Elgg  Version master
admin.css.php
Go to the documentation of this file.
1 <?php
9 echo elgg_view('core.css');
10 
11 ?>
12 
13 .elgg-page-admin {
14  background: #f7f7f8;
15 
16  .elgg-page-section > .elgg-inner {
17  max-width: 100rem;
18  margin: 0 auto;
19  }
20 
21  .elgg-admin-notices-dismiss-all {
22  font-weight: 600;
23  margin: 1rem;
24  display: block;
25  }
26 
27  .elgg-module-admin-notices {
28  margin-top: 2rem;
29 
30  > li {
31  padding: 0;
32  border: none;
33  }
34  }
35 
36  .elgg-page-topbar {
37  background: #2d3047;
38  padding: 0 1rem;
39 
40  .elgg-menu-container {
41  justify-content: space-between;
42  width: 100%;
43 
44  .elgg-menu li .elgg-child-menu {
45  background: #2d3047;
46  }
47  }
48  }
49 
50  .elgg-page-body {
51  padding: 2rem 1rem;
52  }
53 
54  .elgg-page-footer {
55  padding: 1rem;
56  }
57 }
58 
59 @media only $(media-desktop-up) {
60  .elgg-page-admin {
61  .elgg-page-topbar .elgg-menu-admin-header-alt {
62  order: 2;
63  }
64  }
65 }
66 
67 /* ***************************************
68  Admin informationals
69 **************************************** */
70 .elgg-admin-information-row {
71  > .elgg-image {
72  min-width: 1rem;
73  text-align: center;
74 
75  .elgg-icon-times {
76  color: $(state-danger-font-color);
77  }
78  .elgg-icon-exclamation-triangle {
79  color: $(state-warning-font-color);
80  }
81  .elgg-icon-checkmark {
82  color: $(state-success-font-color);
83  }
84  }
85 }
86 
87 /* ***************************************
88  PLUGINS FILTER
89 **************************************** */
90 .elgg-admin-plugins-categories {
91  display: flex;
92  flex-wrap: wrap;
93  flex-direction: row;
94  margin-top: 1rem;
95  grid-gap: 0.5rem;
96 
97  > a {
98  padding: 0.25rem 0.5rem;
99  background: #e6e6ea;
100  border-radius: 3px;
101  font-size:0.85rem;
102  color: #2d3047;
103  text-decoration: none;
104 
105  &.elgg-state-selected,
106  &:hover {
107  color: #fff;
108  background: #2d3047;
109  text-decoration: none;
110  }
111  }
112 }
113 
114 /* ***************************************
115  PLUGINS
116 **************************************** */
117 
118 #elgg-plugin-list .elgg-list > li {
119  padding: 0;
120  border: none;
121  margin-bottom: 2px;
122 }
123 
124 .elgg-plugin {
125  border: 1px solid $(border-color-mild);
126  padding: 0.5rem;
127  border-radius: 3px;
128  position: relative;
129 
130  &:hover {
131  border-color: $(border-color-highlight);
132  }
133 
134  &.elgg-state-active {
135  background: #fff;
136  }
137 
138  &.elgg-state-inactive {
139  background: #eee;
140 
141  .elgg-listing-summary-title a {
142  color: #666;
143  }
144  }
145 
146  &.elgg-state-cannot-activate {
147  background: #f7f0d4;
148  }
149 
150  &.elgg-state-draggable > .elgg-image-block .elgg-head {
151  cursor: move;
152  }
153 
154  > .elgg-image {
155  margin-right: .5rem;
156  min-width: 9rem;
157  text-align: center;
158 
159  .elgg-button {
160  display: block;
161  margin: 0;
162  }
163  }
164 
165  .ui-sortable-handle {
166  cursor: move;
167  }
168 
169  .elgg-state-error {
170  background: $(state-danger-background-color);
171  color: $(state-danger-font-color);
172  border-color: $(state-danger-border-color);
173  }
174 
175  .elgg-state-warning {
176  background: $(state-warning-background-color);
177  color: $(state-warning-font-color);
178  border-color: $(state-warning-border-color);
179  }
180 
181  .elgg-state-error,
182  .elgg-state-warning {
183  padding: 3px 6px;
184  margin: 3px 0;
185  width: auto;
186 
187  a {
188  text-decoration: underline;
189  }
190  }
191 }
192 
193 .elgg-state-cannot-activate .elgg-image a[disabled],
194 .elgg-state-cannot-deactivate .elgg-image a[disabled] {
195  text-decoration: none;
196 }
197 
198 .elgg-plugin-placeholder {
199  display: block;
200  min-height: 5rem;
201  border: 1px dashed $(border-color-highlight) !important;
202 }
203 
204 #elgg-plugin-list-cover {
205  display: none;
206  position: absolute;
207  top: 0;
208  bottom: 0;
209  left: 0;
210  right: 0;
211  background: white;
212  opacity: 0.5;
213 }
214 
215 #elgg-plugin-list {
216  position: relative;
217 
218  .elgg-plugin {
219  .elgg-state-error, .elgg-state-warning {
220  display: inline-block;
221  }
222  }
223 }
224 
225 .elgg-module-plugin-details {
226  width: 600px;
227  min-height: 500px;
228 
229  .elgg-plugin {
230  border: none;
231  margin: 0;
232  padding: 0;
233  }
234 
235  .elgg-tabs a {
236  cursor: pointer;
237  }
238 }
239 
240 /****************************************
241  MARKDOWN
242 ****************************************/
243 .elgg-markdown {
244  margin: 15px;
245 
246  h1, h2, h3, h4, h5, h6 {
247  margin: 1em 0 1em -15px;
248  color: #333;
249  }
250 
251  ol {
252  list-style: decimal;
253  padding-left: 2em;
254  }
255 
256  ul {
257  list-style: disc;
258  padding-left: 2em;
259  }
260 
261  p {
262  margin: 15px 0;
263  }
264 
265  img {
266  max-width: 100%;
267  height: auto;
268  margin: 10px 0;
269  }
270 
271  pre > code {
272  border: none;
273  }
274 }
b Accompany it with a written valid for at least three to give any third for a charge no more than your cost of physically performing source a complete machine readable copy of the corresponding source code
Definition: LICENSE.txt:193
elgg_view(string $view, array $vars=[], string $viewtype= '')
Return a parsed view.
Definition: views.php:156
$result error
$data icon
Definition: default.php:24