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

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

allow multiple language files in a plugin

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