QTfrontend/res/css/qt.css
author dag10 <gottlieb.drew@gmail.com>
Mon, 14 Jan 2013 14:10:37 -0500
changeset 8387 f9d1191476ce
parent 8377 869f80966a77
child 8388 e51211f92de1
permissions -rw-r--r--
Organized options into more relavant tabs. Made QSlider handle larger for easier dragging. Changed initial volume option from a spin box to a slider.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6185
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     1
/******************************************************************************
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     2
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     3
 * CSS-like definition of Qt frontend appearance
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     4
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     5
 ******************************************************************************
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     6
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     7
 * see http://doc.qt.nokia.com/4.5/stylesheet.html
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     8
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
     9
 ******************************************************************************
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    10
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    11
 * This file can be stored at different locations, but it will be read only
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    12
 * once, based on first file found in this order:
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    13
 *
6235
bb1a657f751b stylesheet comments/adjustments
sheepluva
parents: 6185
diff changeset
    14
 *    <userdir>/Data/css/qt.css
bb1a657f751b stylesheet comments/adjustments
sheepluva
parents: 6185
diff changeset
    15
 *    <datadir>/css/qt.css
bb1a657f751b stylesheet comments/adjustments
sheepluva
parents: 6185
diff changeset
    16
 *    <internal default style-sheet> (:/res/css/qt.css)
6185
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    17
 *
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    18
 *****************************************************************************/
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
    19
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    20
HWForm,QDialog {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    21
background-image: url(":/res/Background.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    22
background-position: bottom center;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    23
background-repeat: repeat-x;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    24
background-color: #141250;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    25
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    26
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    27
* {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    28
color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    29
selection-background-color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    30
selection-color: #00351d;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    31
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    32
6235
bb1a657f751b stylesheet comments/adjustments
sheepluva
parents: 6185
diff changeset
    33
a { color:#c8c8ff; }
bb1a657f751b stylesheet comments/adjustments
sheepluva
parents: 6185
diff changeset
    34
7725
4ad05a478c6c Further work on moving to players list model
unc0rr
parents: 7447
diff changeset
    35
QLineEdit, QListWidget, QListView, QTableView, QTextBrowser, QSpinBox, QComboBox,
7447
01111960a48d uploading to youtube, it works, but user interface is still incomplete
Stepan777 <stepik-777@mail.ru>
parents: 6235
diff changeset
    36
QComboBox QAbstractItemView, QPlainTextEdit, QMenu::item {
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    37
background-color: rgba(13, 5, 68, 70%);
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    38
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    39
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    40
QComboBox::separator {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    41
border: solid; border-width: 3px; border-color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    42
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    43
7725
4ad05a478c6c Further work on moving to players list model
unc0rr
parents: 7447
diff changeset
    44
QPushButton, QListWidget, QListView, QTableView, QLineEdit, QHeaderView,
7447
01111960a48d uploading to youtube, it works, but user interface is still incomplete
Stepan777 <stepik-777@mail.ru>
parents: 6235
diff changeset
    45
QTextBrowser, QSpinBox, QToolBox, QComboBox, QPlainTextEdit,
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    46
QComboBox QAbstractItemView, IconedGroupBox,
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    47
.QGroupBox, GameCFGWidget, TeamSelWidget, SelWeaponWidget,
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    48
QTabWidget::pane, QTabBar::tab, #mapPreview {
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    49
border: solid;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    50
border-width: 3px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    51
border-color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    52
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    53
7725
4ad05a478c6c Further work on moving to players list model
unc0rr
parents: 7447
diff changeset
    54
QPushButton:hover, QLineEdit:hover, QListWidget:hover, QListView:hover,
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    55
QSpinBox:hover, QToolBox:hover, QComboBox:hover {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    56
border-color: yellow;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    57
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    58
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    59
QToolButton {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    60
background-color: #11084A;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    61
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    62
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    63
QToolButton:hover {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    64
background-color: #150A61;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    65
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    66
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    67
QToolButton:pressed {
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    68
background-color: #100744;
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    69
}
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    70
7725
4ad05a478c6c Further work on moving to players list model
unc0rr
parents: 7447
diff changeset
    71
QLineEdit, QListWidget, QListView, QTableView, QTextBrowser,
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
    72
QSpinBox, QToolBox, QPlainTextEdit, QToolButton, #mapPreview {
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    73
border-radius: 10px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    74
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    75
7725
4ad05a478c6c Further work on moving to players list model
unc0rr
parents: 7447
diff changeset
    76
QLineEdit, QLabel, QHeaderView, QListWidget, QListView, QTableView,
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    77
QSpinBox, QToolBox::tab, QComboBox, QComboBox QAbstractItemView,
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    78
IconedGroupBox, .QGroupBox, GameCFGWidget, TeamSelWidget,
7447
01111960a48d uploading to youtube, it works, but user interface is still incomplete
Stepan777 <stepik-777@mail.ru>
parents: 6235
diff changeset
    79
SelWeaponWidget, QCheckBox, QRadioButton, QPushButton, QPlainTextEdit {
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    80
font: bold 13px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    81
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    82
SelWeaponWidget QTabWidget::pane, SelWeaponWidget QTabBar::tab:selected {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    83
background-position: bottom center;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    84
background-repeat: repeat-x;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    85
background-color: #000000;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    86
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    87
.QGroupBox,GameCFGWidget,TeamSelWidget,SelWeaponWidget {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    88
background-position: bottom center;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    89
background-repeat: repeat-x;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    90
border-radius: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    91
background-color: rgba(13, 5, 68, 70%);
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    92
padding: 6px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    93
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    94
/*  Experimenting with PaintOnScreen and border-radius on IconedGroupBox children didn't work out well
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    95
IconedGroupBox QComboBox, IconedGroupBox QPushButton, IconedGroupBox QLineEdit,
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    96
IconedGroupBox QSpinBox {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    97
border-radius: 0;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    98
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
    99
IconedGroupBox, IconedGroupBox *, QTabWidget::pane, QTabBar::tab:selected, QToolBox::tab QWidget{" */
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   100
IconedGroupBox, QTabWidget::pane, QTabBar::tab:selected, QToolBox::tab QWidget{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   101
background-color: #130f2c;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   102
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   103
8387
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   104
QTabWidget::pane {
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   105
border-bottom-left-radius: 8px;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   106
border-bottom-right-radius: 8px;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   107
}
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   108
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   109
QLineEdit:disabled {
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   110
border-color: gray;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   111
}
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   112
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   113
QPushButton {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   114
border-radius: 8px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   115
background-origin: margin;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   116
background-position: top left;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   117
background-color: rgba(18, 42, 5, 70%);
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   118
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   119
8377
869f80966a77 GCI2012: Improve Game Configuration Widget
dag10
parents: 8374
diff changeset
   120
QPushButton:pressed, QToolButton:pressed {
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   121
border-color: white;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   122
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   123
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   124
QPushButton:focus {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   125
outline: none;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   126
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   127
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   128
QHeaderView {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   129
border-radius: 0;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   130
border-width: 0;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   131
border-bottom-width: 3px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   132
background-color: #00351d;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   133
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   134
QTableView {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   135
alternate-background-color: #2f213a;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   136
gridline-color: transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   137
}
7798
2f7d22dc329c tweak tab appearance to try to appease koda
nemo
parents: 7725
diff changeset
   138
QTabWidget::pane { top: -2px; }
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   139
QTabBar::tab {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   140
border-radius: 0;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   141
border-top-left-radius: 6px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   142
border-top-right-radius: 6px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   143
padding: 3px;
7798
2f7d22dc329c tweak tab appearance to try to appease koda
nemo
parents: 7725
diff changeset
   144
background-color: #00351d;
2f7d22dc329c tweak tab appearance to try to appease koda
nemo
parents: 7725
diff changeset
   145
color: #ffcc00;
7800
e884809735ce tweak tab styling
nemo
parents: 7798
diff changeset
   146
}
e884809735ce tweak tab styling
nemo
parents: 7798
diff changeset
   147
QTabBar::tab:selected {
e884809735ce tweak tab styling
nemo
parents: 7798
diff changeset
   148
border-bottom-color: #0d0544;
e884809735ce tweak tab styling
nemo
parents: 7798
diff changeset
   149
border-bottom-width: 0;
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   150
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   151
QSpinBox::up-button{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   152
background: transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   153
width: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   154
height: 10px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   155
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   156
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   157
QSpinBox::up-arrow {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   158
image: url(":/res/spin_up.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   159
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   160
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   161
QSpinBox::down-arrow {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   162
image: url(":/res/spin_down.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   163
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   164
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   165
QSpinBox::down-button {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   166
background: transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   167
width: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   168
height: 10px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   169
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   170
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   171
QComboBox {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   172
border-radius: 10px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   173
padding: 3px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   174
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   175
QComboBox:pressed{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   176
border-color: white;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   177
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   178
QComboBox::drop-down{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   179
border: transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   180
width: 25px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   181
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   182
QComboBox::down-arrow {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   183
image: url(":/res/dropdown.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   184
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   185
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   186
VertScrArea {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   187
background-position: bottom center;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   188
background-repeat: repeat-x;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   189
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   190
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   191
IconedGroupBox {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   192
border-radius: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   193
padding: 2px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   194
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   195
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   196
QGroupBox::title{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   197
subcontrol-origin: margin;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   198
subcontrol-position: top left;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   199
text-align: left;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   200
left: 15px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   201
top: -4px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   202
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   203
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   204
QCheckBox::indicator:checked{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   205
image: url(":/res/checked.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   206
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   207
QCheckBox::indicator:unchecked{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   208
image: url(":/res/unchecked.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   209
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   210
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   211
.QWidget{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   212
background: transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   213
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   214
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   215
QTabWidget::pane {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   216
border-top-width: 2px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   217
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   218
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   219
QMenu{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   220
background-color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   221
margin: 3px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   222
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   223
QMenu::item {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   224
background-color: #0d0544;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   225
border: 1px solid transparent;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   226
font: bold;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   227
padding: 2px 25px 2px 20px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   228
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   229
QMenu::item:selected {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   230
background-color: #2d2564;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   231
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   232
QMenu::indicator {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   233
width: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   234
height: 16px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   235
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   236
QMenu::indicator:non-exclusive:checked{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   237
image: url(":/res/checked.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   238
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   239
QMenu::indicator:non-exclusive:unchecked{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   240
image: url(":/res/unchecked.png");
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   241
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   242
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   243
QToolTip{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   244
background-color: #0d0544;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   245
border: 1px solid #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   246
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   247
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   248
:disabled{
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   249
color: #a0a0a0;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   250
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   251
SquareLabel, ItemNum {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   252
background-color: #000000;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   253
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   254
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   255
QSlider::groove::horizontal {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   256
height: 2px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   257
margin: 2px 0px;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   258
background-color: #ffcc00;
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   259
}
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   260
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   261
QSlider::handle::horizontal {
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   262
border: 0px;
8387
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   263
margin: -8px 0px;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   264
background-color: #ffcc00;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   265
width: 12px;
f9d1191476ce Organized options into more relavant tabs.
dag10 <gottlieb.drew@gmail.com>
parents: 8377
diff changeset
   266
height: 6px;
6178
affa860f2983 BOOOOooOM <headshot>! removing default stylesheets from c++ code and adding them as text files to the qt resources
sheepluva
parents:
diff changeset
   267
border-radius: 3px;
6185
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
   268
}
a6aa2d44f390 document css files better
sheepluva
parents: 6178
diff changeset
   269
8374
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   270
HatButton {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   271
text-align: left;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   272
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   273
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   274
#hatList, #hatList:hover {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   275
border-color: #F6CB1C;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   276
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   277
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   278
#hatList QScrollBar {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   279
background-color: #130F2A;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   280
border-top-right-radius: 10px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   281
border-bottom-right-radius: 10px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   282
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   283
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   284
#hatList {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   285
border-color: #F6CB1C;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   286
border-width: 3px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   287
border-style: solid;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   288
border-radius: 10px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   289
border-top-left-radius: 0px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   290
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   291
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   292
#hatList::item {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   293
background-color: #11084A;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   294
padding: 4px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   295
border-radius: 10px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   296
color: #ffcc00 !important;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   297
font: 8px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   298
border-width: 2px;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   299
border-color: #11084A;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   300
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   301
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   302
#hatList::item:hover {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   303
background-color: #150A61;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   304
}
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   305
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   306
#hatList::item:selected {
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   307
background-color: #150A61;
3a1708759c4f Hat selection reworked
dag10
parents: 8318
diff changeset
   308
}