Commit d05d8fe381dc813bf16362fbf7bb7237b7ad771b
Committed by
Álvaro Fernando Matos de Souza
1 parent
fd782b70
Exists in
design_validation
Create pending task temporary style
Showing
1 changed file
with
182 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,182 @@ |
1 | +/*** Environment Admin Pages - General Rules ***/ | |
2 | +.action-admin_panel-index #content .main-block h2, | |
3 | +.controller-features #content .main-block h2{ | |
4 | + font-family: Arial; | |
5 | + font-size: 22px; | |
6 | + font-weight: 700; | |
7 | + line-height: 21px; | |
8 | +} | |
9 | + | |
10 | +/* Environment Settings */ | |
11 | + | |
12 | +/* Profile tab */ | |
13 | + | |
14 | +.action-admin_panel-site_info .main-content .ui-tabs{ | |
15 | + border: none; | |
16 | +} | |
17 | + | |
18 | +.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-nav{ | |
19 | + margin: 0 0 0 1em; | |
20 | + padding: 0; | |
21 | + background: none; | |
22 | + color: #172738; | |
23 | + border: 0px solid #aaaaaa; | |
24 | + border-radius: 4px; | |
25 | + font-weight: bold; | |
26 | +} | |
27 | + | |
28 | +.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-default, | |
29 | +.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-default{ | |
30 | + background: #d5d5d5 none; | |
31 | + color: #555555; | |
32 | + font-weight: normal; | |
33 | +} | |
34 | + | |
35 | +.action-admin_panel-site_info .main-content .ui-widget-content .ui-state-active, | |
36 | +.action-admin_panel-site_info .main-content .ui-widget-header .ui-state-active{ | |
37 | + background: #eeeff1; | |
38 | + color: #212121; | |
39 | + font-weight: normal; | |
40 | +} | |
41 | + | |
42 | +.action-admin_panel-site_info .main-content .ui-tabs .ui-tabs-panel{ | |
43 | + display: block; | |
44 | + padding: 1em 1.4em; | |
45 | + background-color: #eeeff1; | |
46 | + color: #777; | |
47 | + border-width: 1px; | |
48 | + font-size: 13px; | |
49 | + text-decoration: none; | |
50 | +} | |
51 | + | |
52 | +/* Organizations Settings */ | |
53 | + | |
54 | +.action-organizations-index .main-block form#manage-profiles, | |
55 | +.action-organizations-index .main-block form#manage-profiles form{ | |
56 | + background-color: transparent; | |
57 | +} | |
58 | + | |
59 | +.action-organizations-index .main-block form#manage-profiles .search-field{ | |
60 | + margin-bottom: 30px; | |
61 | +} | |
62 | + | |
63 | +.action-organizations-index .main-block form#manage-profiles .search-field .formfield { | |
64 | + width: 100%; | |
65 | + margin-right: 0.5em; | |
66 | + float: left; | |
67 | +} | |
68 | + | |
69 | +.action-organizations-index .main-block form#manage-profiles .search-field .formfield input { | |
70 | + margin-top: 0px; | |
71 | + margin-right: 0.5em; | |
72 | + padding: 6px; | |
73 | + min-width: 97%; | |
74 | + height: 19px; | |
75 | + max-height: 19px; | |
76 | + background: none; | |
77 | + border: 1px solid #ccc; | |
78 | + border-radius: 4px; | |
79 | +} | |
80 | + | |
81 | +.action-organizations-index .main-block form#manage-profiles input.button.submit{ | |
82 | + height: 32px; | |
83 | + margin-top: 8px; | |
84 | + padding: 5px 15px; | |
85 | + background: #3E67B1 none; | |
86 | + color: #FFF; | |
87 | + border-radius: 4px; | |
88 | + border: 1px solid #3E67B1; | |
89 | + line-height: 22px; | |
90 | + font-size: 14px; | |
91 | + text-transform: uppercase; | |
92 | +} | |
93 | + | |
94 | +.action-organizations-index .main-block form#manage-profiles input.button.submit:hover{ | |
95 | + background: #5E82C6; | |
96 | +} | |
97 | + | |
98 | +.action-organizations-index .main-block #environment-profiles-filter-title, | |
99 | +.action-organizations-index .main-block #environment-profiles-filter-filter{ | |
100 | + line-height: 35px; | |
101 | + font-size: 12px; | |
102 | +} | |
103 | + | |
104 | +.action-organizations-index .main-block table#organizations-list th{ | |
105 | + text-align: left; | |
106 | + vertical-align: middle; | |
107 | + padding: 2px 8px; | |
108 | +} | |
109 | + | |
110 | +/*** Features Settings ***/ | |
111 | + | |
112 | +.controller-features #content form *{ | |
113 | + font-size: 15px; | |
114 | +} | |
115 | + | |
116 | +.controller-features #content th{ | |
117 | + text-align: left; | |
118 | +} | |
119 | + | |
120 | +.controller-features #content h3{ | |
121 | + min-height: 0; | |
122 | + margin: 20px auto 10px auto; | |
123 | +} | |
124 | + | |
125 | +.controller-features #content hr{ | |
126 | + display: none; | |
127 | +} | |
128 | + | |
129 | +.controller-features #content ul.token-input-list{ | |
130 | + padding: 6px; | |
131 | + background: none; | |
132 | + border: 1px solid #ccc; | |
133 | + border-radius: 4px; | |
134 | + font-family: Arial, helvetica; | |
135 | + font-size: 15px; | |
136 | +} | |
137 | + | |
138 | +/*** Community Admin pages ***/ | |
139 | +/* Homepage */ | |
140 | +.action-profile_editor-index #profile-editor-index h1.block-title{ | |
141 | + color: #172738; | |
142 | + background-color: transparent; | |
143 | + border-bottom: none; | |
144 | + font-size: 2.3em; | |
145 | + font-weight: bold; | |
146 | + font-variant: normal; | |
147 | + font-family: Arial, open_sansbold, Helvetica, sans-serif; | |
148 | +} | |
149 | + | |
150 | +/* Index */ | |
151 | +.action-cms-index .cms-articles th{ | |
152 | + text-align: left; | |
153 | +} | |
154 | + | |
155 | +/* Spam Index */ | |
156 | +.action-spam-index .ui-widget-header { | |
157 | + border: none; | |
158 | + background: none; | |
159 | +} | |
160 | + | |
161 | +/* Tasks - tmp adjust */ | |
162 | +.action-profile_editor-index #content .pending-tasks{ | |
163 | + max-width: 500px; | |
164 | + padding: 15px 20px; | |
165 | + margin: 20px 0 30px 0; | |
166 | + border: 1px dotted #ccc; | |
167 | + border-left: 5px solid #FF0366; | |
168 | + border-radius: 3px; | |
169 | + display: block; | |
170 | + background: #fff; | |
171 | + line-height: 20px; | |
172 | + font-size: 13px; | |
173 | +} | |
174 | + | |
175 | +.action-profile_editor-index #content .pending-tasks .button.icon-todo.with-text{ | |
176 | + background: #3E67B1; | |
177 | + color: #FFF; | |
178 | +} | |
179 | + | |
180 | +.action-profile_editor-index #content .pending-tasks .button.icon-todo.with-text:hover{ | |
181 | + background: #5E82C6; | |
182 | +} | ... | ... |