]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/icons.less
quattro: small week calendar view for event/birthday reminders
[friendica.git] / view / theme / quattro / icons.less
1 // Quattro Theme LESS file
2 /* icons */
3
4 .icons(@size: 22) {
5         &.notify { background-image: url("../../../images/icons/@{size}/notify_off.png"); }
6         &.gear   { background-image: url("../../../images/icons/@{size}/gear.png"); }
7         
8         &.add           { background-image: url("../../../images/icons/@{size}/add.png"); }
9         &.delete        { background-image: url("../../../images/icons/@{size}/delete.png"); }
10         &.edit          { background-image: url("../../../images/icons/@{size}/edit.png"); }
11         &.star          { background-image: url("../../../images/icons/@{size}/star.png"); }
12         &.menu          { background-image: url("../../../images/icons/@{size}/menu.png"); }
13         &.link          { background-image: url("../../../images/icons/@{size}/link.png"); }
14         &.lock          { background-image: url("../../../images/icons/@{size}/lock.png"); }
15         &.unlock        { background-image: url("../../../images/icons/@{size}/unlock.png"); }
16         &.plugin        { background-image: url("../../../images/icons/@{size}/plugin.png"); }
17         &.type-unkn     { background-image: url("../../../images/icons/@{size}/zip.png"); }
18         &.type-audio{ background-image: url("../../../images/icons/@{size}/audio.png"); }
19         &.type-video{ background-image: url("../../../images/icons/@{size}/video.png"); }
20         &.type-image{ background-image: url("../../../images/icons/@{size}/image.png"); }
21         &.type-text     { background-image: url("../../../images/icons/@{size}/text.png"); }
22
23         &.language      { background-image: url("icons/language.png"); }
24         
25         
26 }
27
28
29 .icon {
30         background-color: transparent ;
31         background-repeat: no-repeat;
32         background-position: left center;
33         display: block;
34         overflow: hidden;
35         text-indent: -9999px;
36         padding: 1px;
37
38         &.text {
39                 text-indent: 0px;
40         }
41
42         &.s10 {
43                 min-width:10px; height: 10px;
44                 .icons(10);
45                 &.text { padding: 2px 0px 0px 15px;  }
46         }
47         &.s16 {
48                 min-width:16px; height: 16px;
49                 .icons(16);
50                 &.text { padding: 4px 0px 0px 20px;  }
51         }
52         &.s22 {
53                 min-width:22px; height: 22px;
54                 .icons(22);
55                 &.text { padding: 10px 0px 0px 25px;  }
56         }
57         &.s48 {
58                 width:48px; height: 48px;
59                 .icons(48);
60         }
61         
62         
63 }