mirror of https://github.com/qTox/qTox.git
8 changed files with 145 additions and 96 deletions
@ -1,64 +1,80 @@ |
|||||||
QScrollArea { |
QScrollArea |
||||||
|
{ |
||||||
background: @themeMedium; |
background: @themeMedium; |
||||||
} |
} |
||||||
|
|
||||||
QScrollBar:vertical { |
QScrollBar:vertical |
||||||
|
{ |
||||||
background: @themeMedium; |
background: @themeMedium; |
||||||
width: 16px; |
width: 16px; |
||||||
padding: 0px 3px 0px 3px; |
padding: 0px 3px 0px 3px; |
||||||
} |
} |
||||||
|
|
||||||
QScrollBar:handle:vertical { |
QScrollBar:handle:vertical |
||||||
|
{ |
||||||
background: @themeDark; |
background: @themeDark; |
||||||
min-height: 20px; |
min-height: 20px; |
||||||
border-radius: 5px; |
border-radius: 5px; |
||||||
margin: 3px 0px 3px 0px; |
margin: 3px 0px 3px 0px; |
||||||
} |
} |
||||||
|
|
||||||
QScrollBar:handle:vertical:hover { |
QScrollBar:handle:vertical:hover |
||||||
|
{ |
||||||
background: @themeMediumDark; |
background: @themeMediumDark; |
||||||
} |
} |
||||||
|
|
||||||
QScrollBar:handle:vertical:pressed { |
QScrollBar:handle:vertical:pressed |
||||||
|
{ |
||||||
background: @themeDark; |
background: @themeDark; |
||||||
} |
} |
||||||
|
|
||||||
QScrollBar:add-line:vertical {height: 0px;subcontrol-position: bottom;subcontrol-origin: margin;} |
QScrollBar:add-line:vertical |
||||||
|
{ |
||||||
|
height: 0px; |
||||||
|
subcontrol-position: bottom; |
||||||
|
subcontrol-origin: margin; |
||||||
|
} |
||||||
|
|
||||||
QScrollBar:sub-line:vertical {height: 0px;subcontrol-position: top;subcontrol-origin: margin;} |
QScrollBar:sub-line:vertical |
||||||
|
{ |
||||||
|
height: 0px; |
||||||
|
subcontrol-position: top; |
||||||
|
subcontrol-origin: margin; |
||||||
|
} |
||||||
|
|
||||||
QScrollBar:add-page:vertical, QScrollBar::sub-page:vertical { |
QScrollBar:add-page:vertical, QScrollBar::sub-page:vertical |
||||||
|
{ |
||||||
background: none; |
background: none; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer > QFrame#line |
QWidget#circleWidgetContainer > QFrame#line |
||||||
{ |
{ |
||||||
color: white; |
color: white; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer |
QWidget#circleWidgetContainer |
||||||
{ |
{ |
||||||
background-color: @themeMedium; |
background-color: @themeMedium; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer:hover |
QWidget#circleWidgetContainer:hover |
||||||
{ |
{ |
||||||
background-color: @themeLight; |
background-color: @themeLight; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer QLineEdit |
QWidget#circleWidgetContainer QLineEdit |
||||||
{ |
{ |
||||||
background-color: @themeLight; |
background-color: @themeLight; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer > QLabel#status |
QWidget#circleWidgetContainer > QLabel#status |
||||||
{ |
{ |
||||||
font: @small; |
font: @small; |
||||||
color: @lightGrey; |
color: @lightGrey; |
||||||
} |
} |
||||||
|
|
||||||
QWidget#circleWidgetContainer > QLabel#name |
QWidget#circleWidgetContainer > QLabel#name |
||||||
{ |
{ |
||||||
font: @big; |
font: @big; |
||||||
color: @white; |
color: @white; |
||||||
} |
} |
||||||
|
@ -1,58 +1,68 @@ |
|||||||
#LoginScreen { |
#LoginScreen |
||||||
background-color: #1c1c1c; |
{ |
||||||
|
background-color: #1c1c1c; |
||||||
} |
} |
||||||
|
|
||||||
#line { |
#line |
||||||
color: #757575; |
{ |
||||||
|
color: #757575; |
||||||
} |
} |
||||||
|
|
||||||
#stackedWidget { |
#stackedWidget |
||||||
background-color: #d6d2Cf; |
{ |
||||||
|
background-color: #d6d2Cf; |
||||||
} |
} |
||||||
|
|
||||||
#labelNewProfile, |
#labelNewProfile, |
||||||
#labelLoadProfile { |
#labelLoadProfile |
||||||
border-style: solid; |
{ |
||||||
border-width: 15px 0 15px 15px; |
border-style: solid; |
||||||
border-color: #d6d2cf #d6d2cf #d6d2cf #1c1c1c; |
border-width: 15px 0 15px 15px; |
||||||
|
border-color: #d6d2cf #d6d2cf #d6d2cf #1c1c1c; |
||||||
} |
} |
||||||
#labelNewProfile { |
#labelNewProfile |
||||||
margin-top:125px; |
{ |
||||||
margin-bottom:45px; |
margin-top:125px; |
||||||
|
margin-bottom:45px; |
||||||
} |
} |
||||||
#labelLoadProfile { |
#labelLoadProfile |
||||||
margin-top:165px; |
{ |
||||||
margin-bottom:5px; |
margin-top:165px; |
||||||
|
margin-bottom:5px; |
||||||
} |
} |
||||||
|
|
||||||
LoginScreen > QPushButton, |
LoginScreen > QPushButton, |
||||||
QStackedWidget QPushButton |
QStackedWidget QPushButton |
||||||
{ |
{ |
||||||
background: transparent; |
background: transparent; |
||||||
border: none; |
border: none; |
||||||
color: white; |
color: white; |
||||||
font-size: 9pt; |
font-size: 9pt; |
||||||
font-weight: bold; |
font-weight: bold; |
||||||
} |
} |
||||||
|
|
||||||
#loginButton, |
#loginButton, |
||||||
#importButton, |
#importButton, |
||||||
#createAccountButton { |
#createAccountButton |
||||||
border-radius:5px; |
{ |
||||||
padding:5px; |
border-radius:5px; |
||||||
background-color:#42a33a; |
padding:5px; |
||||||
|
background-color:#42a33a; |
||||||
} |
} |
||||||
|
|
||||||
#loginButton:hover, |
#loginButton:hover, |
||||||
#importButton:hover, |
#importButton:hover, |
||||||
#createAccountButton:hover { |
#createAccountButton:hover |
||||||
background: #0c530d; |
{ |
||||||
|
background: #0c530d; |
||||||
} |
} |
||||||
|
|
||||||
QLabel, QCheckBox, QProgressBar { |
QLabel, QCheckBox, QProgressBar |
||||||
color: black; |
{ |
||||||
|
color: black; |
||||||
} |
} |
||||||
|
|
||||||
QCheckBox:disabled { |
QCheckBox:disabled |
||||||
color: gray; |
{ |
||||||
|
color: gray; |
||||||
} |
} |
||||||
|
@ -1,27 +1,33 @@ |
|||||||
QTextEdit { |
QTextEdit |
||||||
border-color: @lightGrey; |
{ |
||||||
border-style: solid; |
border-color: @lightGrey; |
||||||
border-width: 1px 0 1px 1px; |
border-style: solid; |
||||||
|
border-width: 1px 0 1px 1px; |
||||||
background: white; |
background: white; |
||||||
} |
} |
||||||
|
|
||||||
QTextEdit:hover { |
QTextEdit:hover |
||||||
border-color: #d7d4d1; |
{ |
||||||
|
border-color: #d7d4d1; |
||||||
} |
} |
||||||
|
|
||||||
QTextEdit:pressed { |
QTextEdit:pressed |
||||||
border-color: #4ea6ea; |
{ |
||||||
|
border-color: #4ea6ea; |
||||||
} |
} |
||||||
|
|
||||||
QTextEdit#group { |
QTextEdit#group |
||||||
/*border-radius: 0 6px 6px 0; would use to round corners in groupchat, but Qt's implementation seems to be bugged*/ |
{ |
||||||
border: 1px solid #c4c1bd; |
/*border-radius: 0 6px 6px 0; would use to round corners in groupchat, but Qt's implementation seems to be bugged*/ |
||||||
|
border: 1px solid #c4c1bd; |
||||||
} |
} |
||||||
|
|
||||||
QTextEdit#group:hover { |
QTextEdit#group:hover |
||||||
border-color: #d7d4d1; |
{ |
||||||
|
border-color: #d7d4d1; |
||||||
} |
} |
||||||
|
|
||||||
QTextEdit#group:pressed { |
QTextEdit#group:pressed |
||||||
border-color: #4ea6ea; |
{ |
||||||
|
border-color: #4ea6ea; |
||||||
} |
} |
||||||
|
@ -1,4 +1,5 @@ |
|||||||
#selfAvatar:hover { |
#selfAvatar:hover |
||||||
|
{ |
||||||
border-radius: 6px; |
border-radius: 6px; |
||||||
background-color: #ccc; |
background-color: #ccc; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue