forked from signalpoint/DrupalGap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drupalgap.css
125 lines (110 loc) · 1.91 KB
/
drupalgap.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
* Splash Screen
*/
#_drupalgap_splash .ui-content {
position: absolute; top: 40px; right: 0; bottom: 0; left: 0;
}
#_drupalgap_splash_content {
width: 100%; height: 100%; position: relative;
}
/**
* Logo
*/
.logo {
text-align: center;
}
/**
* Forms
*/
div.form-item {
margin-bottom: 1em;
}
/**
* System Messages
*/
div.messages {
background-position: 8px 8px; /* LTR */
background-repeat: no-repeat;
border: 1px solid;
margin: 6px 0;
padding: 10px 10px 10px 50px; /* LTR */
}
div.status {
background-image: url(images/message-24-ok.png);
border-color: #be7;
}
div.status,
.ok {
color: #234600;
}
div.status,
table tr.ok {
background-color: #f8fff0;
}
div.warning {
background-image: url(images/message-24-warning.png);
border-color: #ed5;
}
div.warning,
.warning {
color: #840;
}
div.warning,
table tr.warning {
background-color: #fffce5;
}
div.error {
background-image: url(images/message-24-error.png);
border-color: #ed541d;
}
div.error,
.error {
color: #8c2e0b;
}
div.error,
table tr.error {
background-color: #fef5f1;
}
div.error p.error {
color: #333;
}
div.messages ul {
margin: 0 0 0 1em; /* LTR */
padding: 0;
}
div.messages ul li {
list-style-image: none;
}
/**
* Lists
*/
.dg_empty_list_header {
line-height: 0em;
margin: 0em 0em 1.3em 0em;
}
/**
* Images
*/
/**
* Don't let images stretch out of their parent container in the main content
* div. Ignore google images.
*/
div[role="main"] img,
div[role="banner"] img,
#_drupalgap_splash_content img {
width: auto !important;
width: 100%;
max-width: 100%;
max-height: 100%;
}
/**
* Menus
*/
div[data-role="header"] div[data-role="controlgroup"] .ui-controlgroup-controls .ui-btn-icon-notext {
padding: .45em 1em;
}
@-moz-document url-prefix() {
div[data-role="header"] div[data-role="controlgroup"] .ui-controlgroup-controls .ui-btn-icon-notext {
padding: .4em 1em;
}
}