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

Last change on this file since 27447 was 26607, checked in by mistic100, 10 years ago

allow to ignore a file

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