style.qss 4.57 KB
Newer Older
shibakaneki's avatar
shibakaneki committed
1 2
QWidget#DockPaletteWidgetBox,
QWidget#documentNavigator,
shibakaneki's avatar
shibakaneki committed
3
QWidget#UBLibPathViewer,
shibakaneki's avatar
shibakaneki committed
4
QWidget#UBLibNavigatorWidget,
5
QWidget#UBLibItemProperties,
6
QWidget#UBDownloadWidget,
7
QWidget#UBTeacherGuideWidget,
8
QWidget#UBFeaturesNavigatorWidget,
9 10
QWidget#PathList,
QWidget#UBFeaturesCentralWidget
11 12 13 14
{
	background: #EEEEEE;
	border-radius: 10px;
	border: 2px solid #999999;
shibakaneki's avatar
shibakaneki committed
15 16
}

17 18 19 20 21 22 23 24 25
QTextEdit,
QLineEdit,
QComboBox#DockPaletteWidgetComboBox QAbstractItemView
{
    selection-background-color: lightgreen;
    selection-color: black;
}


26 27 28 29 30 31
QWidget#mAdditionalDataContainer
{
	border-radius: 10px;
	border: 2px solid #999999;
}

32 33 34 35 36 37 38
QWidget#UBMediaVideoContainer
{
	background: #000000;
	border-radius: 10px;
	border: 2px solid #999999;
}

shibakaneki's avatar
shibakaneki committed
39 40 41 42 43 44 45
QWidget#UBLibWebView
{
	background: #EEEEEE;
	border-radius : 10px;
	border: 2px solid #999999;
}

46
QListView
Claudio Valerio's avatar
Claudio Valerio committed
47
{
48
      border: 0px;
Claudio Valerio's avatar
Claudio Valerio committed
49 50
}

51
QWidget#UBFeatureProperties
52
{
53
      border: 2px;
54 55
}

shibakaneki's avatar
shibakaneki committed
56 57
QWebView#SearchEngineView
{
58
	background:white;
59 60 61 62 63 64 65 66 67 68 69 70 71 72
}

QColorDialog
{
	background: #EEEEEE;
}

QLabel#DockPaletteWidgetTitle
{
	color: #FFFFFF;
	font-size : 18px;
	font-weight:bold;
}

73 74
QLineEdit#UBTGLineEdit,
QLabel#UBTGMediaDropMeLabel
shibakaneki's avatar
shibakaneki committed
75 76
{
	background: white;
77
	border: 1 solid #999999;
shibakaneki's avatar
shibakaneki committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	border-radius : 10px;
	padding: 2px;
}

QComboBox#DockPaletteWidgetComboBox
{
	background: white;
	border-radius : 10px;
	padding: 2px;
}

QComboBox#DockPaletteWidgetComboBox:drop-down
{
	background: white;
	width:1px;
	height:1px;
	margin: 9px 5px 0px 0px;
}

QComboBox#DockPaletteWidgetComboBox::down-arrow
{
	image:url(:/images/down_arrow.png);
	background:#BBBBBB;
	border: 2px solid #999999;
	height:16px;
	width:16px;
	padding: 0px 0px 0px 0px;
	margin: 5px 10px 0px 0px;
	border-radius: 10px;
}

109 110 111 112 113 114 115 116 117 118
QPushButton#DockPaletteWidgetButton
{
	background-color : #DDDDDD;
	color : #555555;
	border-radius : 6px;
	padding : 5px;
	font-weight : bold;
	font-size : 12px;
}

shibakaneki's avatar
shibakaneki committed
119 120 121 122 123 124 125
QTextEdit#TeacherStudentBox
{
	background: white;
	border: 2px solid #999999;
	border-radius: 10px;
}

126 127 128 129 130
QPushButton#DockPaletteWidgetButton::checked
{
	background-color: #BBBBBB;
}

shibakaneki's avatar
shibakaneki committed
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
QScrollBar::vertical
{
	background:transparent;
	margin: 23px 1px 25px 1px;
}

QScrollBar::handle:vertical
{
	border: 2px solid #999999;
	border-radius:6px;
	background:#BBBBBB;
	min-height:40px;
}

QScrollBar::add-line:vertical
{
	image:url(:/images/down_arrow.png);
	height:16px;
	background:#BBBBBB;
	border:2px solid #999999;
	border-radius:6px;
	margin: 1px 1px 4px 1px;
	subcontrol-position:bottom;
	subcontrol-origin:margin;
}

QScrollBar::sub-line:vertical
{
	image:url(:/images/up_arrow.png);
	height:16px;
	background:#BBBBBB;
	border:2px solid #999999;
	border-radius:6px;
	margin: 2px 1px 1px 1px;
	subcontrol-position:top;
	subcontrol-origin:margin;
}

QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
{
	background:transparent;
}

QScrollBar::horizontal
{
	background:transparent;
	margin: 1px 23px 1px 25px;
}

QScrollBar::handle:horizontal
{
	border: 2px solid #999999;
	border-radius:6px;
	background:#BBBBBB;
	min-width:40px;
}

QScrollBar::add-line:horizontal
{
	image:url(:/images/right_arrow.png);
	width:16px;
	background:#BBBBBB;
	border:2px solid #999999;
	border-radius:6px;
	margin: 1px 1px 1px 4px;
	subcontrol-position:right;
	subcontrol-origin:margin;
}

QScrollBar::sub-line:horizontal
{
	image:url(:/images/left_arrow.png);
	width:16px;
	background:#BBBBBB;
	border:2px solid #999999;
	border-radius:6px;
	margin: 1px 2px 1px 1px;
	subcontrol-position:left;
	subcontrol-origin:margin;
}

QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
{
	background:transparent;
}

217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
QSlider::handle::horizontal
{
	background-color:#EEEEEE;
	margin-top:-5px;
	margin-bottom:-5px;
	height:20px;
	width:18px;
	border-radius:10px;
	border:1px solid #555555;
}

QSlider::groove::horizontal
{
	background-color:#999999;
	height:10px;
	border-radius:5px;
	border:1px solid #555555;
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
}

QLabel#UBTGEditionDocumentTitle
{
    color: black;
    font-size : 14px;
    font-weight:bold;
}

QLabel#UBTGPresentationDocumentTitle
{
    color: black;
    font-size : 12px;
    font-weight:bold;
}

250
QLabel#UBTGPageNumberLabel
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
{
    color: black;
    font-size : 12px;
    font-weight:bold;
}

UBTGAdaptableText#UBTGEditionPageTitle,
UBTGAdaptableText#UBTGEditionComment
{ 
    color: black;
    font-size : 12px;
}

UBTGAdaptableText#UBTGPresentationPageTitle
{
    color: black;
    font-size:16px;
    font-weight:bold;
    border : none;
}

UBTGAdaptableText#UBTGPresentationComment
{
    color: black;
    font-size:12px;
    border : none;
}
  
279
QFrame#UBTGSeparator
280 281 282
{
    background-color: #cccccc;
}
283 284 285 286 287 288 289

UBTGAdaptableText {
   background-color: white; 
   border:1 solid #999999; 
   border-radius : 10px; 
   padding: 2px;
}