File: msgEdit.qss

package info (click to toggle)
qtox 1.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,996 kB
  • sloc: cpp: 48,067; xml: 8,560; python: 704; sh: 232; makefile: 14
file content (33 lines) | stat: -rw-r--r-- 523 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
QTextEdit
{
    border-color: @groundExtra;
    border-style: solid;
    border-width: 1px 0 1px 1px;
    background: white;
}

QTextEdit:hover
{
    border-color: #d7d4d1;
}

QTextEdit:pressed
{
    border-color: #4ea6ea;
}

QTextEdit#conference
{
    /*border-radius: 0 6px 6px 0; would use to round corners in conference, but Qt's implementation seems to be bugged*/
    border: 1px solid #c4c1bd;
}

QTextEdit#conference:hover
{
    border-color: #d7d4d1;
}

QTextEdit#conference:pressed
{
    border-color: #4ea6ea;
}