source: trunk/LATMOS-Accounts-Web/root/static/style.css @ 1338

Last change on this file since 1338 was 1338, checked in by nanardon, 9 years ago

Menu and CSS fixes

File size: 3.5 KB
Line 
1/* global dcl: */
2
3img {
4    border: none;
5    vertical-align: middle;
6    padding: 0em
7}
8
9.ui-autocomplete {
10     max-height: 8em;
11     overflow-y: auto;
12     /* prevent horizontal scrollbar */
13     overflow-x: hidden;
14}
15
16* html .ui-autocomplete {
17     height: 8em;
18}
19
20input[type=image] {
21    border: outset;
22    border-color: black;
23    vertical-align: middle;
24    background-color: #DDDDD9;
25}
26#oaction input[type=image] {
27    width: 1.5em;
28    height:1.5em;
29    vertical-align: middle;
30}
31img.editobject {
32    width: 1.5em;
33    height:1.5em;
34    vertical-align: middle;
35}
36img.notice {
37    width: 1em;
38    height:1em;
39    vertical-align: middle;
40}
41img.attr {
42    width: 1.5em;
43    height:1.5em;
44    vertical-align: middle;
45}
46input.attr {
47    width: 1.5em;
48    height:1.5em;
49    vertical-align: middle;
50}
51/* Button like */
52img.button {
53    border: outset;
54    border-color: black;
55}
56input.button {
57    border: outset;
58    border-color: black;
59}
60img.attrbutton {
61    border: outset;
62    border-color: black;
63    width: 1.5em;
64    height:1.5em;
65    vertical-align: middle;
66}
67input.attrbutton {
68    border: outset;
69    border-color: black;
70    width: 1.5em;
71    height:1.5em;
72    vertical-align: middle;
73}
74
75.unexported {
76    text-decoration: line-through;
77    color: grey;
78}
79
80.bloc-box {
81    display: inline-block;
82    padding: 2px;
83    margin: auto;
84    vertical-align: middle;
85}
86
87#search-adv-filter {
88    width: 100%;
89}
90
91div#search-adv-filter {
92}
93
94#header {
95    padding: 1px;
96}
97#header h1 {
98    text-align: center;
99    font-size: 1.2em;
100    margin: 0px;
101    padding: 0em;
102    background-color: #7DB4D8;
103}
104
105#mainbox {
106    margin-top:    0.2em;
107    margin-bottom: 0.2em;
108}
109
110#oinfo p {
111    padding: 0em;
112    margin: 0em;
113    margin-left: 1em;
114}
115#oinfo p#oname {
116    text-transform: capitalize;
117    font-size: 1.2em;
118}
119#oinfo_icons {
120    float: left;
121}
122#oname img {
123    width: 1.5em;
124    height:1.5em;
125    vertical-align: middle;
126}
127#oinfo_label {
128    float: left;
129}
130#navigate {
131    margin: 0em;
132    padding: 0em;
133}
134#navigate p {
135    margin: 0em;
136    text-align: center;
137}
138
139/* Object menu: */
140
141#omenu a {
142    text-decoration: none;
143    color: black;
144}
145#omenu div {
146    padding-top: 0.5em;
147    padding-bottom: 0.5em;
148    padding-left: 0em;
149    margin: 0em;
150}
151#omenu span {
152    padding-left: 0.5em;
153    padding-right: 0.5em;
154    margin: 0em;
155    border: groove thin;
156    text-decoration: none;
157    float: left;
158    background-color: #DDDDD9;
159    color: black;
160}
161#omenu span#oactive {
162    padding-left: 0.5em;
163    padding-right: 0.5em;
164    margin: 0em;
165    border: groove thin;
166    text-decoration: none;
167    float: left;
168    background-color: #7DB4D8;
169    color: black;
170}
171#omenu a:hover {
172    text-color blue;
173}
174
175
176#user_group_form {
177    max-height: 15em;
178    width: 15em;
179    overflow: auto;
180    border: inset;
181}
182#user_group_form ul {
183    list-style-type: none;
184    padding: 0.2em;
185    font-size: 0.9em;
186}
187
188#user_address_list {
189    border: outset;
190}
191#user_address_list td {
192    padding-bottom: 0.5em;
193    padding-top:    0.5em;
194}
195#user_address_list td.user_address_cel {
196    padding-bottom: 0.5em;
197    padding-top:    0.5em;
198    padding-right:  1em;
199}
200
201/* box receiving random password */
202span#randpasswd {
203    padding: 0.3em;
204    margin: 0.3em;
205    border: inset;
206    font-family: monospace;
207    font-size: 1.5em;
208    background-color: black;
209    color: green;
210}
211
212/* Random password options list */
213ul#randpasswd_options {
214    list-style-type: none;
215    padding-top: 0.2em;
216    padding-left: 0em;
217} 
218
219div#objectform {
220    padding-top: 1em;
221    padding-bottom: 1em;
222}
223
224
Note: See TracBrowser for help on using the repository browser.