Changeset 250 for binary-improvements/webserver/css
- Timestamp:
- Aug 12, 2015, 6:10:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/webserver/css/style.css
r249 r250 14 14 15 15 a { 16 color: #ff6000;16 color: orangered; 17 17 text-decoration: none; 18 18 } 19 19 20 20 a:visited { 21 color: #ff6000;21 color: orangered; 22 22 text-decoration: none; 23 23 } … … 30 30 31 31 .adminnavbar, 32 .admincontent {32 #admincontent { 33 33 position: absolute; 34 34 top: 0; … … 50 50 border-right: 1px solid rgba(0,0,0,0.3); 51 51 box-shadow: 3px 0px 14px rgba(0,0,0,0.9); 52 position: fixed; 52 53 } 53 54 … … 69 70 70 71 .adminnavbar #adminmenu .menu_button.allowed { 71 display: inline;72 display: list-item; 72 73 } 73 74 … … 80 81 font-weight: bold; 81 82 text-transform: uppercase; 83 } 84 85 #newlogcount { 86 font-size: 70%; 87 border-radius: 2px; 88 background-color: #f00; 89 color: #fff; 90 padding: 0px 2px 0px 2px; 91 display: none; 92 } 93 94 #newlogcount.visible { 95 display: inline; 82 96 } 83 97 … … 122 136 */ 123 137 124 .admincontent {138 #admincontent { 125 139 position: absolute; 126 140 right: 0; … … 129 143 } 130 144 131 .admincontent #nopermissionwarning {145 #admincontent #nopermissionwarning { 132 146 margin: 20px 50px; 133 147 } 134 148 135 .admincontent .contenttab {149 #admincontent .contenttab { 136 150 position: absolute; 137 151 top: 0; … … 141 155 } 142 156 143 .admincontent .current_tab {157 #admincontent .current_tab { 144 158 display: block; 145 159 } … … 199 213 border-collapse: collapse; 200 214 } 201 #equipmentTable .invFieldText { 202 display: none; 203 } 215 204 216 .playerInventoryDialog td.invField { 205 217 width: 58px; … … 222 234 } 223 235 236 #equipmentTable .invFieldText { 237 display: none; 238 } 239 .playerInventoryDialog .invFieldText { 240 display: none; 241 } 242 .playerInventoryDialog .invFieldText.visible { 243 display: inline; 244 } 245 .playerInventoryDialog .invFieldQuality { 246 bottom: 0px; 247 height: 5px; 248 left: 0px; 249 position: relative; 250 right: 0px; 251 display: none; 252 } 253 .playerInventoryDialog .invFieldQuality.visible { 254 display: block; 255 } 224 256 225 257 … … 246 278 .adminmap .leaflet-container a:hover { 247 279 text-decoration: none; 248 color: #ff6000;280 color: orangered; 249 281 } 250 282 … … 261 293 } 262 294 295 296 297 298 /*======================================== 299 - Log 300 */ 301 302 .adminlog { 303 padding: 10px; 304 } 305 306 .adminlog table { 307 width: 100%; 308 } 309 310 .adminlog table td { 311 vertical-align: top; 312 } 313 314 .adminlog table tr.readmark td { 315 border-bottom-width: 2px; 316 border-bottom-color: red; 317 border-bottom-style: dotted; 318 } 319 320 .adminlog table tr.Log td { 321 color: limegreen; 322 } 323 .adminlog table tr.Warning td { 324 color: orange; 325 } 326 .adminlog table tr.Error td { 327 color: red; 328 } 329 .adminlog table tr.Exception td { 330 color: red; 331 } 332 333 334 .adminlog .logcol_datetime, 335 .adminlog .logcol_uptime { 336 white-space: nowrap; 337 text-align: right; 338 } 339 .adminlog .logcol_type { 340 white-space: nowrap; 341 } 342 .adminlog .logcol_msg { 343 width: 100%; 344 } 345 346 .adminlog .logcol_missed { 347 text-align: center; 348 border-width: 1px 0px; 349 border-style: dashed; 350 border-color: orange; 351 } 352 353 .adminlog .tracebtn { 354 cursor: pointer; 355 } 356 .adminlog .tracebtn:after { 357 content: "Show trace..."; 358 } 359 .adminlog .tracebtn.visible:after { 360 content: "Hide trace..."; 361 } 362 363 .adminlog .trace { 364 display: none; 365 } 366 367 .adminlog .trace.visible { 368 display: block; 369 } 370 371 .adminlog .trace span { 372 display: block; 373 margin-left: 30px; 374 text-indent: -30px; 375 } 376 377 .adminlog #markasread { 378 cursor: pointer; 379 border-radius: 5px; 380 background-color: #444; 381 color: orangered; 382 display: inline-block; 383 margin-top: 10px; 384 padding: 3px 5px 3px 5px; 385 } 386 387
Note:
See TracChangeset
for help on using the changeset viewer.