]> git.proxmox.com Git - extjs.git/blob - extjs/examples/kitchensink/classic/sass/src/view/toolbar/Overflow.scss
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / kitchensink / classic / sass / src / view / toolbar / Overflow.scss
1 @if $theme-name == 'theme-classic' or $theme-name == 'theme-gray' {
2 .toolbar-overflow-paste {
3 background-image: url(images/icons/fam/paste_plain.png);
4 }
5
6 .toolbar-overflow-cut {
7 background-image: url(images/icons/fam/cut.png);
8 }
9
10 .toolbar-overflow-copy {
11 background-image: url(images/icons/fam/page_copy.png);
12 }
13
14 .toolbar-overflow-format {
15 background-image: url(images/icons/fam/paintbrush.png);
16 }
17
18 .toolbar-overflow-list {
19 background-image: url(images/icons/fam/text_list_bullets.png);
20 }
21 } @else {
22 .toolbar-overflow-paste:before {
23 font-family: FontAwesome;
24 content: $fa-var-paste;
25 }
26
27 .toolbar-overflow-cut:before {
28 font-family: FontAwesome;
29 content: $fa-var-cut;
30 }
31
32 .toolbar-overflow-copy:before {
33 font-family: FontAwesome;
34 content: $fa-var-copy;
35 }
36
37 .toolbar-overflow-format:before {
38 font-family: FontAwesome;
39 content: $fa-var-file-o;
40 }
41
42 .toolbar-overflow-list:before {
43 font-family: FontAwesome;
44 content: $fa-var-list;
45 }
46 }
47
48 .toolbar-overflow-bold:before {
49 font-family: FontAwesome;
50 content: $fa-var-bold;
51 }
52
53 .toolbar-overflow-underline:before {
54 font-family: FontAwesome;
55 content: $fa-var-underline;
56 }
57
58 .toolbar-overflow-italic:before {
59 font-family: FontAwesome;
60 content: $fa-var-italic;
61 }