source: extensions/plugin_lang_analysis/template/style.css @ 23472

Last change on this file since 23472 was 23472, checked in by mistic100, 11 years ago

somes fixes and improvments

File size: 2.5 KB
Line 
1.text-common {
2  color:#5E9100 !important;
3}
4.text-admin {
5  color:#E23D3B !important;
6}
7   
8.switch-button {
9  display:inline-block;
10} 
11  .switch-button span {
12    float:left;
13    padding:5px 8px;
14    background:#e6e6e6;
15    color:#888;
16    cursor:pointer;
17  }
18    .switch-button span:hover {
19      text-decoration:underline;
20    }
21    .switch-button span.active {
22      color:#212121;
23    }
24    .switch-button span.common.active {
25      background:#BAFF3F;
26    }
27    .switch-button span.admin.active {
28      background:#FF5E5B;
29    }
30    .switch-button span.other.active {
31      background:#4CC6FF;
32    }
33    .switch-button span:first-of-type {
34      border-radius:5px 0 0 5px;
35    }
36    .switch-button span:last-of-type {
37      border-radius:0 5px 5px 0;
38    }
39    .switch-button span:only-of-type {
40      border-radius:5px;
41    }
42
43.files {
44  border-collapse:separate;
45  border-spacing:10px 0;
46  text-align:left !important;
47  margin:0;
48}
49
50.strings {
51  border-collapse:collapse;
52  text-align:left !important;
53  margin:0;
54}
55  .strings th {
56    background:#999;
57    color:#eee;
58    padding:2px 5px;
59    white-space:nowrap;
60  }
61    .strings thead th:not(:first-of-type) {
62      border-left:1px solid #eee;
63    }
64    .strings thead th:first-of-type {
65      border-radius:5px 0 0 0;
66    }
67    .strings thead th:last-of-type {
68      border-radius:0 5px 0 0;
69    }
70    .strings tfoot th:first-of-type {
71      border-radius:0 0 0 5px;
72    }
73    .strings tfoot th:last-of-type {
74      border-radius:0 0 5px 0;
75    }
76 
77  .strings td {
78    background:#e7e7e7;
79    border-top:1px solid #ccc;
80    padding:2px 3px;
81    vertical-align:top;
82    color:#444;
83  }
84    .strings tr.missing td {
85      background:#EBD9D9;
86    }
87    .strings tr.useless td {
88      background:#DBEACC;
89    }
90    .strings tr.hover td {
91      background:#D9E2EB;
92    }
93 
94  .strings tr td.toggler {
95    cursor:pointer;
96    color:#666;
97  }
98    .strings tr td:first-child:hover:before {
99      color:#222;
100    }
101  .strings tr td:nth-child(2) {
102    min-width:300px;
103    max-width:700px;
104  }
105  .strings tr td:nth-child(3) {
106    text-align:right;
107  }
108 
109  .strings tr.file {
110    display:none;
111    font-size:0.8em;
112  }
113    .strings tr.file td {
114      border-color:#ddd;
115    }
116   
117  .strings .legend span:before {
118    content:" ";
119    display:inline-block;
120    width:10px;
121    height:10px;
122    overflow:hidden;
123    margin:0 3px 0 10px;
124  }
125    .strings .legend span.missing:before {
126      background:#EAAFAF;
127    }
128    .strings .legend span.useless:before {
129      background:#BFE599;
130    }
131
132.tiptip {
133  cursor:help;
134}
Note: See TracBrowser for help on using the repository browser.