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;
}
|