This is just some static backup of the original site, don't expect every link to work!

source: skin/vI_DialogBrowser.css @ 184c6c

ng_0.9
Last change on this file since 184c6c was 184c6c, checked in by rene <rene@…>, 11 years ago

rearranged tree structure / added build-script

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2This css is used in the improved Dialogbox for vI_storage-Warnings
3The css will be loaded with vI_htmlTextBox.__setCSS() because the
4embedded browser is not able to access chrome
5*/
6
7div.bool {
8    background-repeat:no-repeat;
9    background-position: center;
10}
11
12td.equal div.bool {
13    background-image: url("chrome://v_identity/skin/notchecked-equal.png");
14}
15td.unequal div.bool {
16    background-image: url("chrome://v_identity/skin/notchecked-unequal.png");
17}
18td.equal div.bool.checked {
19    background-image: url("chrome://v_identity/skin/checked-equal.png");
20}
21td.unequal div.bool.checked {
22    background-image: url("chrome://v_identity/skin/checked-unequal.png");
23}
24
25@media braille { label.screen { display:none; } }
26@media screen { label.braille { display:none; } }
27
28h1 {
29    font-size: medium;
30    font-weight:bold;
31    margin-bottom:2em;
32}
33
34h2 {
35    font-size: small;
36}
37
38h2 .recLabel {
39    font-weight: normal;
40    display: block;
41}
42h2 .recipient {
43    text-align: center;
44    display: block;
45    margin-bottom:2em;
46}
47
48table {
49    width: 95%;
50    margin: auto;
51    font-size: small;
52    border-collapse: collapse;
53}
54
55th {
56    /*font-weight: normal;*/
57    border-bottom: 1px solid;
58}
59
60.col2, .col3 {
61    text-align: center;
62    border-left: 1px solid;
63    border-right: 1px solid;
64}
65
66.updateStorage .col2, .replaceVIdentity .col3 {
67    background: #eee;
68 }
69
70.unequal.col2, .unequal.col3 {
71    background-color: #eaa;
72    font-weight: bold;
73}
74
75.updateStorage .ignoreBaseId.col2, .updateStorage .ignoreValues.col2 {
76    text-decoration: line-through;
77}
78
79.question {
80    text-align: right;
81    font-size: medium;
82    font-weight:bold;
83    margin-top:4em;
84}
Note: See TracBrowser for help on using the repository browser.