Skip to content

Commit 684d8c1

Browse files
author
Carolina Koehn
committed
Removed unused ressources
1 parent 5784ba5 commit 684d8c1

6 files changed

Lines changed: 179 additions & 385 deletions

File tree

contao/assets/css/style.css

Lines changed: 156 additions & 143 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* This file is part of MetaModels/core.
33
*
4-
* (c) 2012-2018 The MetaModels team.
4+
* (c) 2012-2019 The MetaModels team.
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.
@@ -13,150 +13,163 @@
1313
* @author Andreas Isaak <info@andreas-isaak.de>
1414
* @author Ingolf Steinhardt <info@e-spin.de>
1515
* @author Sven Baumann <baumann.sv@gmail.com>
16-
* @copyright 2012-2018 The MetaModels team.
16+
* @author Carolina Koehn <ck@kikmedia.de>
17+
* @copyright 2012-2019 The MetaModels team.
1718
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
1819
* @filesource
1920
*/
21+
body[class*="version_3"] a[class*="header_"] {
22+
margin-left: 15px;
23+
}
24+
25+
body[class*="version_3"] .tl_file_list .field_type img {
26+
margin-right: 8px;
27+
float: left;
28+
}
29+
30+
.header_css_fields {
31+
padding: 2px 0 3px 20px;
32+
background-image: url("../images/icons/fields.png");
33+
background-position: left center;
34+
background-repeat: no-repeat;
35+
}
36+
37+
.header_add_all {
38+
padding: 2px 0 3px 20px;
39+
background-image: url("../images/icons/dca_add.png");
40+
background-position: left center;
41+
background-repeat: no-repeat;
42+
}
43+
44+
.rendersetting_add_all {
45+
background-image: url("../images/icons/rendersettings_add.png");
46+
}
47+
48+
.dca_palette {
49+
color: #8ab858;
50+
margin: 6px 0;
51+
padding-left: 24px;
52+
background: url("../../../../themes/default/images/palOpen.gif") 3px center no-repeat;
53+
}
54+
55+
.mm_problem_display {
56+
margin-bottom: 30px;
57+
}
58+
59+
.mm_problem_display ul {
60+
padding: 0;
61+
list-style: none;
62+
}
63+
64+
.tl_subdca > legend {
65+
margin: 0;
66+
padding: 10px 0 10px 23px;
67+
background: url("../images/icons/filter_settings.png") no-repeat left center;
68+
}
69+
70+
.tl_subdca legend label {
71+
font-weight: bold;
72+
}
73+
74+
body[class*="version_2"] .tl_content .field_type img {
75+
margin-right: 8px;
76+
float: left;
77+
}
78+
79+
body[class*="version_2"] .tl_content_right + img {
80+
margin-right: 8px;
81+
float: left;
82+
}
83+
84+
.list_view li:first-child .tl_content {
85+
border-top: 1px solid #ebebe4;
86+
}
87+
88+
.list_view .tl_content > div:first-child {
89+
float: left;
90+
}
91+
92+
.tl_class {
93+
color: #c6c6c6;
94+
}
95+
96+
.tl_formbody {
97+
position: relative;
98+
}
99+
100+
input[readonly] {
101+
background-color: #ebebe4;
102+
}
103+
104+
input[readonly]:focus {
105+
background-color: #ebebe4;
106+
}
107+
108+
textarea[readonly] {
109+
background-color: #ebebe4;
110+
}
111+
112+
textarea[readonly]:focus {
113+
background-color: #ebebe4;
114+
}
115+
116+
.wc_info {
117+
margin: 0;
118+
}
119+
120+
.wc_label {
121+
width: 31px;
122+
display: inline-block;
123+
}
124+
125+
.clx {
126+
overflow: visible;
127+
}
128+
129+
.w50x {
130+
height: auto;
131+
}
132+
133+
#table_tl_metamodel_dcasetting_ tr.odd td {
134+
background-color: transparent;
135+
}
136+
137+
.dca_combine.widget td:empty {
138+
display: none;
139+
}
140+
141+
form[id*="tl_metamodel_"] .wizard a[data-lightbox] img {
142+
margin-top: 3px;
143+
}
144+
145+
form[id*="tl_metamodel_"] .wizard a[onclick] img {
146+
margin-top: 3px;
147+
}
148+
149+
div[class*="table_tl_metamodel_"] .tl_file_list {
150+
padding: 4px 0 6px;
151+
}
152+
153+
fieldset.tl_subdca {
154+
padding: 0;
155+
margin: 0;
156+
border: none;
157+
}
158+
159+
.multicolumnwizard .fallback_language span {
160+
font-weight: bold;
161+
}
162+
163+
form[id^=mm_] .sort_hint {
164+
display: none;
165+
}
20166

21-
body[class*="version_3"] a[class*="header_"] {
22-
margin-left:15px;
23-
}
24-
25-
.header_css_fields {
26-
padding:2px 0px 3px 20px;
27-
background-image:url(../images/icons/fields.png);
28-
background-position:left center;
29-
background-repeat:no-repeat;
30-
}
31-
32-
.header_add_all {
33-
padding:2px 0px 3px 20px;
34-
background-image:url(../images/icons/dca_add.png);
35-
background-position:left center;
36-
background-repeat:no-repeat;
37-
}
38-
39-
.rendersetting_add_all {
40-
background-image:url(../images/icons/rendersettings_add.png);
41-
}
42-
43-
/*------------------------------------------------------------------------*/
44-
45-
#table_tl_metamodel_dcasetting_ tr.odd td {
46-
background-color:transparent;
47-
}
48-
49-
.dca_palette {
50-
color:#8AB858;
51-
margin:6px 0;
52-
padding-left:24px;
53-
background:url(../../../../themes/default/images/palOpen.gif) 3px center no-repeat;
54-
}
55-
56-
.dca_combine.widget td:empty {
57-
display:none;
58-
}
59-
60-
.mm_problem_display {
61-
margin-bottom:30px;
62-
}
63-
64-
.mm_problem_display ul {
65-
padding:0; list-style:none;
66-
}
67-
68-
form[id*="tl_metamodel_"] .wizard a[data-lightbox] img,
69-
form[id*="tl_metamodel_"] .wizard a[onclick] img {
70-
margin-top:3px;
71-
}
72-
73-
div[class*="table_tl_metamodel_"] .tl_file_list {
74-
padding:4px 0 6px;
75-
}
76-
77-
fieldset.tl_subdca {
78-
padding:0;
79-
margin:0;
80-
border:none;
81-
}
82-
83-
.tl_subdca > legend {
84-
margin:0;
85-
padding:10px 0 10px 23px;
86-
background:url(../images/icons/filter_settings.png) no-repeat left center;
87-
}
88-
89-
.tl_subdca legend label {
90-
font-weight:bold;
91-
}
92-
93-
/*------------------------------------------------------------------------*/
94-
95-
body[class*="version_3"] .tl_file_list .field_type img,
96-
body[class*="version_2"] .tl_content .field_type img,
97-
body[class*="version_2"] .tl_content_right + img {
98-
margin-right:8px;
99-
float:left;
100-
}
101-
102-
/*------------------------------------------------------------------------*/
103-
104-
.list_view li:first-child .tl_content {
105-
border-top:1px solid #E9E9E9;
106-
}
107-
108-
.list_view .tl_content > div:first-child {
109-
float:left;
110-
}
111-
112-
.tl_class {
113-
color:#c6c6c6;
114-
}
115-
116-
.multicolumnwizard .fallback_language span {
117-
font-weight:bold;
118-
}
119-
120-
.tl_formbody {
121-
position:relative;
122-
}
123-
124-
input[readonly],
125-
textarea[readonly],
126-
input[readonly]:focus,
127-
textarea[readonly]:focus {
128-
background-color: #ebebe4;
129-
}
130-
131-
form[id^=mm_] .sort_hint{
132-
display:none;
133-
}
134-
135-
/* Wildcard */
136-
.wc_info {
137-
margin: 0;
138-
}
139-
.wc_label {
140-
width: 31px;
141-
display: inline-block;
142-
}
143-
144-
/*------------------------------------------------------------------------*/
145-
146-
.clx {
147-
overflow:visible;
148-
}
149-
150-
.w50x {
151-
height:auto;
152-
}
153-
154-
.long .chzn-container {
155-
width:100%;
156-
}
157-
158-
.widget.translat-attr label {
159-
padding-left: 20px;
160-
display: inline-block;
161-
background:url(../images/icons/locale.png) no-repeat left center;
167+
.long .chzn-container {
168+
width: 100%;
162169
}
170+
171+
.widget.translat-attr label {
172+
padding-left: 20px;
173+
display: inline-block;
174+
background: url("../images/icons/locale.png") no-repeat left center;
175+
}

0 commit comments

Comments
 (0)