Ignore:
Timestamp:
Aug 12, 2015, 6:10:28 PM (9 years ago)
Author:
alloc
Message:

Fixes 5_7_9

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/webserver/css/style.css

    r249 r250  
    1414
    1515a {
    16         color: #ff6000;
     16        color: orangered;
    1717        text-decoration: none;
    1818}
    1919
    2020a:visited {
    21         color: #ff6000;
     21        color: orangered;
    2222        text-decoration: none;
    2323}
     
    3030
    3131.adminnavbar,
    32 .admincontent {
     32#admincontent {
    3333        position: absolute;
    3434        top: 0;
     
    5050        border-right: 1px solid rgba(0,0,0,0.3);
    5151        box-shadow: 3px 0px 14px rgba(0,0,0,0.9);
     52        position: fixed;
    5253}
    5354
     
    6970
    7071.adminnavbar #adminmenu .menu_button.allowed {
    71         display: inline;
     72        display: list-item;
    7273}
    7374
     
    8081        font-weight: bold;
    8182        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;
    8296}
    8397
     
    122136*/
    123137
    124 .admincontent {
     138#admincontent {
    125139        position: absolute;
    126140        right: 0;
     
    129143}
    130144
    131 .admincontent #nopermissionwarning {
     145#admincontent #nopermissionwarning {
    132146        margin: 20px 50px;
    133147}
    134148
    135 .admincontent .contenttab {
     149#admincontent .contenttab {
    136150        position: absolute;
    137151        top: 0;
     
    141155}
    142156
    143 .admincontent .current_tab {
     157#admincontent .current_tab {
    144158        display: block;
    145159}
     
    199213        border-collapse: collapse;
    200214}
    201 #equipmentTable .invFieldText {
    202         display: none;
    203 }
     215
    204216.playerInventoryDialog td.invField {
    205217        width: 58px;
     
    222234}
    223235
     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}
    224256
    225257
     
    246278.adminmap .leaflet-container a:hover {
    247279        text-decoration: none;
    248         color: #ff6000;
     280        color: orangered;
    249281}
    250282
     
    261293}
    262294
     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.