Revision 6d8575c6
Von Sven Schöling vor mehr als 2 Jahren hinzugefügt
css/design40/less/specials.less | ||
---|---|---|
148 | 148 |
#row_table_scroll_id { |
149 | 149 |
max-width: 96vw !important; |
150 | 150 |
} |
151 |
|
|
152 |
|
|
153 |
// icons that change between stylesheets |
|
154 |
img { |
|
155 |
&.icon-sort-up { |
|
156 |
content:url("../../image/up-small.png"); |
|
157 |
} |
|
158 |
&.icon-sort-down { |
|
159 |
content:url("../../image/down.png"); |
|
160 |
} |
|
161 |
&.icon-dragdrop { |
|
162 |
content:url("../../image/updown2.png"); |
|
163 |
} |
|
164 |
&.icon-delete { |
|
165 |
content:url("../../image/cross2.png"); |
|
166 |
} |
|
167 |
&.icon-map { |
|
168 |
content:url("../../image/map-earth.png"); |
|
169 |
} |
|
170 |
} |
css/design40/style.css | ||
---|---|---|
5094 | 5094 |
#row_table_scroll_id { |
5095 | 5095 |
max-width: 96vw !important; |
5096 | 5096 |
} |
5097 |
img.icon-sort-up { |
|
5098 |
content: url("../../image/up-small.png"); |
|
5099 |
} |
|
5100 |
img.icon-sort-down { |
|
5101 |
content: url("../../image/down.png"); |
|
5102 |
} |
|
5103 |
img.icon-dragdrop { |
|
5104 |
content: url("../../image/updown2.png"); |
|
5105 |
} |
|
5106 |
img.icon-delete { |
|
5107 |
content: url("../../image/cross2.png"); |
|
5108 |
} |
|
5109 |
img.icon-map { |
|
5110 |
content: url("../../image/map-earth.png"); |
|
5111 |
} |
|
5097 | 5112 |
/* ------------------------------------------------------------- */ |
5098 | 5113 |
/* JQUERY UI (jquery-ui.less) */ |
5099 | 5114 |
/* ------------------------------------------------------------- */ |
css/kivitendo/main.css | ||
---|---|---|
642 | 642 |
div.filtered_select select { |
643 | 643 |
width: 522px; |
644 | 644 |
} |
645 |
|
|
646 |
/* icons that change between stylesheets */ |
|
647 |
img.icon-sort-up { |
|
648 |
content:url("../../image/up.png"); |
|
649 |
} |
|
650 |
img.icon-sort-down { |
|
651 |
content:url("../../image/down.png"); |
|
652 |
} |
|
653 |
img.icon-dragdrop { |
|
654 |
content:url("../../image/updown.png"); |
|
655 |
} |
|
656 |
img.icon-delete { |
|
657 |
content:url("../../image/cross.png"); |
|
658 |
} |
|
659 |
img.icon-map { |
|
660 |
content:url("../../image/map.png"); |
|
661 |
} |
css/lx-office-erp/main.css | ||
---|---|---|
642 | 642 |
div.filtered_select select { |
643 | 643 |
width: 522px; |
644 | 644 |
} |
645 |
|
|
646 |
/* icons that change between stylesheets */ |
|
647 |
img.icon-sort-up { |
|
648 |
content:url("../../image/up.png"); |
|
649 |
} |
|
650 |
img.icon-sort-down { |
|
651 |
content:url("../../image/down.png"); |
|
652 |
} |
|
653 |
img.icon-dragdrop { |
|
654 |
content:url("../../image/updown.png"); |
|
655 |
} |
|
656 |
img.icon-delete { |
|
657 |
content:url("../../image/cross.png"); |
|
658 |
} |
|
659 |
img.icon-map { |
|
660 |
content:url("../../image/map.png"); |
|
661 |
} |
Auch abrufbar als: Unified diff
design40: alternative images
statt <img src="...."> können jetzt bestimmte bilder direkt über das
stylesheet bestimmt werden in dem man src leer lässt, und nur eine icon
Klasse setzt: <img class="icon-map"> zum Beispiel.
Zur Zeit betrifft das:
up.png -> icon-sort-up
down.png -> icon-sort-down
updown.png -> icon-dragdrop
map.png -> icon-map
cross.png -> icon-delete