To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / vect-mac.qss
History | View | Annotate | Download (5.85 KB)
| 1 | 175:741f88f51b06 | Chris | /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
|---|---|---|---|
| 2 | |||
| 3 | /* |
||
| 4 | Vect |
||
| 5 | An experimental audio player for plural recordings of a work |
||
| 6 | Centre for Digital Music, Queen Mary, University of London. |
||
| 7 | |||
| 8 | This file is based on the Thorn theme of the Rosegarden MIDI and |
||
| 9 | audio sequencer and notation editor. Copyright 2006-2014 |
||
| 10 | D. Michael McIntyre and the Rosegarden team. |
||
| 11 | |||
| 12 | This program is free software; you can redistribute it and/or |
||
| 13 | modify it under the terms of the GNU General Public License as |
||
| 14 | published by the Free Software Foundation; either version 2 of the |
||
| 15 | License, or (at your option) any later version. See the file |
||
| 16 | COPYING included with this distribution for more information. |
||
| 17 | */ |
||
| 18 | |||
| 19 | QWidget |
||
| 20 | {
|
||
| 21 | background: #333333; |
||
| 22 | color: #FAFAFA; |
||
| 23 | } |
||
| 24 | |||
| 25 | QDialog |
||
| 26 | {
|
||
| 27 | background-color: #333333; |
||
| 28 | } |
||
| 29 | |||
| 30 | QFrame#BottomFrame, |
||
| 31 | QFrame#BottomFrame > QFrame |
||
| 32 | {
|
||
| 33 | background-color: #333333; |
||
| 34 | } |
||
| 35 | |||
| 36 | QLabel |
||
| 37 | {
|
||
| 38 | background: transparent; |
||
| 39 | color: white; |
||
| 40 | } |
||
| 41 | |||
| 42 | QMenu |
||
| 43 | {
|
||
| 44 | background-color: #EEEEEE; |
||
| 45 | border: 1px solid black; |
||
| 46 | } |
||
| 47 | |||
| 48 | QMenu::separator |
||
| 49 | {
|
||
| 50 | height: 2px; |
||
| 51 | background: #AAAAAA; |
||
| 52 | margin-left: 10px; |
||
| 53 | margin-right: 5px; |
||
| 54 | } |
||
| 55 | |||
| 56 | QMenu::item:enabled |
||
| 57 | {
|
||
| 58 | background-color: transparent; |
||
| 59 | color: #000000; |
||
| 60 | padding: 2px 25px 2px 20px; |
||
| 61 | border: 1px solid transparent; |
||
| 62 | min-width: 12em; /* leaves room for space between item and hotkey */ |
||
| 63 | } |
||
| 64 | |||
| 65 | QMenu::item:!enabled |
||
| 66 | {
|
||
| 67 | color: #AAAAAA; |
||
| 68 | padding: 2px 25px 2px 20px; |
||
| 69 | border: 1px solid transparent; |
||
| 70 | min-width: 12em; /* leaves room for space between item and hotkey */ |
||
| 71 | } |
||
| 72 | |||
| 73 | QMenu::item:selected |
||
| 74 | {
|
||
| 75 | background-color: #80AFFF; |
||
| 76 | color: #FFFFFF; |
||
| 77 | } |
||
| 78 | |||
| 79 | QCheckBox:enabled QLabel, |
||
| 80 | QCheckBox:enabled |
||
| 81 | {
|
||
| 82 | color: #FFFFFF |
||
| 83 | } |
||
| 84 | |||
| 85 | QCheckbox:!enabled QLabel, |
||
| 86 | QCheckBox:!enabled |
||
| 87 | {
|
||
| 88 | color: #000000; |
||
| 89 | } |
||
| 90 | |||
| 91 | QCheckBox::indicator:enabled |
||
| 92 | {
|
||
| 93 | background: url(:icons/style/checkbox-checked.png); |
||
| 94 | } |
||
| 95 | |||
| 96 | QCheckBox |
||
| 97 | {
|
||
| 98 | spacing: 5px; |
||
| 99 | } |
||
| 100 | |||
| 101 | QCheckBox::indicator |
||
| 102 | {
|
||
| 103 | width: 13px; |
||
| 104 | height: 13px; |
||
| 105 | } |
||
| 106 | |||
| 107 | QCheckBox::indicator:unchecked |
||
| 108 | {
|
||
| 109 | image: url(:icons/style/checkbox_unchecked.png); |
||
| 110 | } |
||
| 111 | |||
| 112 | QCheckBox::indicator:!enabled |
||
| 113 | {
|
||
| 114 | image: url(:icons/style/checkbox_disabled.png); |
||
| 115 | } |
||
| 116 | |||
| 117 | QCheckBox::indicator:checked:!enabled |
||
| 118 | {
|
||
| 119 | image: url(:icons/style/checkbox_checked_disabled.png); |
||
| 120 | } |
||
| 121 | |||
| 122 | QCheckBox::indicator:unchecked:hover |
||
| 123 | {
|
||
| 124 | image: url(:icons/style/checkbox_unchecked_hover.png); |
||
| 125 | } |
||
| 126 | |||
| 127 | QCheckBox::indicator:unchecked:pressed |
||
| 128 | {
|
||
| 129 | image: url(:icons/style/checkbox_unchecked_pressed.png); |
||
| 130 | } |
||
| 131 | |||
| 132 | QCheckBox::indicator:checked |
||
| 133 | {
|
||
| 134 | image: url(:icons/style/checkbox_checked.png); |
||
| 135 | } |
||
| 136 | |||
| 137 | QCheckBox::indicator:checked:hover |
||
| 138 | {
|
||
| 139 | image: url(:icons/style/checkbox_checked_hover.png); |
||
| 140 | } |
||
| 141 | |||
| 142 | QCheckBox::indicator:checked:pressed |
||
| 143 | {
|
||
| 144 | image: url(:icons/style/checkbox_checked_pressed.png); |
||
| 145 | } |
||
| 146 | |||
| 147 | QCheckBox::indicator:indeterminate |
||
| 148 | {
|
||
| 149 | image: url(:icons/style/checkbox_indeterminate.png); |
||
| 150 | } |
||
| 151 | |||
| 152 | QCheckBox::indicator:indeterminate:hover |
||
| 153 | {
|
||
| 154 | image: url(:icons/style/checkbox_indeterminate_hover.png); |
||
| 155 | } |
||
| 156 | |||
| 157 | QCheckBox::indicator:indeterminate:pressed |
||
| 158 | {
|
||
| 159 | image: url(:icons/style/checkbox_indeterminate_pressed.png); |
||
| 160 | } |
||
| 161 | |||
| 162 | QRadioButton:enabled QLabel, |
||
| 163 | QRadioButton:enabled |
||
| 164 | {
|
||
| 165 | color: #FFFFFF; |
||
| 166 | } |
||
| 167 | |||
| 168 | QRadioButton:!enabled QLabel, |
||
| 169 | QRadioButton:!enabled |
||
| 170 | {
|
||
| 171 | color: #000000; |
||
| 172 | } |
||
| 173 | |||
| 174 | QRadioButton::indicator |
||
| 175 | {
|
||
| 176 | width: 13px; |
||
| 177 | height: 13px; |
||
| 178 | } |
||
| 179 | |||
| 180 | QRadioButton::indicator::unchecked:enabled |
||
| 181 | {
|
||
| 182 | image: url(:icons/style/radiobutton_unchecked.png); |
||
| 183 | } |
||
| 184 | |||
| 185 | QRadioButton::indicator::unchecked:!enabled |
||
| 186 | {
|
||
| 187 | image: url(:icons/style/radiobutton_unchecked_disabled.png); |
||
| 188 | } |
||
| 189 | |||
| 190 | QRadioButton::indicator:unchecked:hover:enabled |
||
| 191 | {
|
||
| 192 | image: url(:icons/style/radiobutton_unchecked_hover.png); |
||
| 193 | } |
||
| 194 | |||
| 195 | QRadioButton::indicator:unchecked:hover:!enabled |
||
| 196 | {
|
||
| 197 | image: url(:icons/style/radiobutton_unchecked_hover_disabled.png); |
||
| 198 | } |
||
| 199 | |||
| 200 | QRadioButton::indicator:unchecked:pressed:enabled |
||
| 201 | {
|
||
| 202 | image: url(:icons/style/radiobutton_unchecked_pressed.png); |
||
| 203 | } |
||
| 204 | |||
| 205 | QRadioButton::indicator:unchecked:pressed:!enabled |
||
| 206 | {
|
||
| 207 | image: url(:icons/style/radiobutton_unchecked_pressed_disabled.png); |
||
| 208 | } |
||
| 209 | |||
| 210 | QRadioButton::indicator::checked:enabled |
||
| 211 | {
|
||
| 212 | image: url(:icons/style/radiobutton_checked.png); |
||
| 213 | } |
||
| 214 | |||
| 215 | QRadioButton::indicator::checked:!enabled |
||
| 216 | {
|
||
| 217 | image: url(:icons/style/radiobutton_checked_disabled.png); |
||
| 218 | } |
||
| 219 | |||
| 220 | QRadioButton::indicator:checked:hover:enabled |
||
| 221 | {
|
||
| 222 | image: url(:icons/style/radiobutton_checked_hover.png); |
||
| 223 | } |
||
| 224 | |||
| 225 | QRadioButton::indicator:checked:hover:!enabled |
||
| 226 | {
|
||
| 227 | image: url(:icons/style/radiobutton_checked_hover_disabled.png); |
||
| 228 | } |
||
| 229 | |||
| 230 | QRadioButton::indicator:checked:pressed:enabled |
||
| 231 | {
|
||
| 232 | image: url(:icons/style/radiobutton_checked_pressed.png); |
||
| 233 | } |
||
| 234 | |||
| 235 | QRadioButton::indicator:checked:pressed:!enabled |
||
| 236 | {
|
||
| 237 | image: url(:icons/style/radiobutton_checked_pressed_disabled.png); |
||
| 238 | } |
||
| 239 | |||
| 240 | QMenuBar |
||
| 241 | {
|
||
| 242 | background-color: #404040; |
||
| 243 | } |
||
| 244 | |||
| 245 | QMenuBar::item |
||
| 246 | {
|
||
| 247 | spacing: 3px; /* spacing between menu bar items */ |
||
| 248 | padding: 1px 4px; |
||
| 249 | background: transparent; |
||
| 250 | color: #FFFFFF; |
||
| 251 | } |
||
| 252 | |||
| 253 | QMenuBar::item:selected |
||
| 254 | {
|
||
| 255 | background-color: #80AFFF; |
||
| 256 | color: #FFFFFF; |
||
| 257 | } |
||
| 258 | |||
| 259 | QMenuBar::item:pressed |
||
| 260 | {
|
||
| 261 | background-color: #BBCEFF; |
||
| 262 | } |
||
| 263 | |||
| 264 | QMessageBox |
||
| 265 | {
|
||
| 266 | background: #000000; |
||
| 267 | } |
||
| 268 | |||
| 269 | QProgressBar |
||
| 270 | {
|
||
| 271 | border: 1px solid #AAAAAA; |
||
| 272 | border-radius: 3px; |
||
| 273 | text-align: center; |
||
| 274 | background: #FFFFFF; |
||
| 275 | } |
||
| 276 | |||
| 277 | QProgressBar::chunk |
||
| 278 | {
|
||
| 279 | background-color: #89B8E7; |
||
| 280 | width: 20px; |
||
| 281 | } |
||
| 282 | |||
| 283 | QToolButton |
||
| 284 | {
|
||
| 285 | background-color: transparent; |
||
| 286 | border: 0px; |
||
| 287 | } |
||
| 288 | |||
| 289 | QPushButton, |
||
| 290 | QFileDialog QPushButton, |
||
| 291 | QDialog QPushButton |
||
| 292 | {
|
||
| 293 | border: 2px solid #AAAAAA; |
||
| 294 | border-radius: 2px; |
||
| 295 | padding: 0.18em; |
||
| 296 | padding-left: 0.5em; |
||
| 297 | padding-right: 0.5em; |
||
| 298 | margin-top: 0.1em; |
||
| 299 | margin-bottom: 0.1em; |
||
| 300 | margin-left: 0.2em; |
||
| 301 | margin-right: 0.2em; |
||
| 302 | } |
||
| 303 | |||
| 304 | QPushButton:disabled, |
||
| 305 | QFileDialog QPushButton:disabled, |
||
| 306 | QDialog QPushButton:disabled |
||
| 307 | {
|
||
| 308 | color: #AAAAAA; |
||
| 309 | } |
||
| 310 | |||
| 311 | QPushButton:pressed, |
||
| 312 | QFileDialog QPushButton:pressed, |
||
| 313 | QDialog QPushButton:pressed, |
||
| 314 | QFileDialog QPushButton:on, |
||
| 315 | QDialog QPushButton:on |
||
| 316 | {
|
||
| 317 | background-color: #BBCEFF; |
||
| 318 | } |
||
| 319 | |||
| 320 | QPushButton::enabled:hover |
||
| 321 | {
|
||
| 322 | background-color: #666666; |
||
| 323 | } |
||
| 324 | |||
| 325 | QPushButton::checked |
||
| 326 | {
|
||
| 327 | background-color: #666666; |
||
| 328 | } |