modules/taskbar.less, more cleanup of style
parent
9fe30b905b
commit
9e42cee87c
@ -1 +1,2 @@
|
|||||||
@import "modules/postWindow";
|
@import "modules/postWindow";
|
||||||
|
@import "modules/taskbar";
|
@ -0,0 +1,49 @@
|
|||||||
|
.taskbar {
|
||||||
|
display: none;
|
||||||
|
-moz-opacity: 0.5;
|
||||||
|
opacity: 0.5;
|
||||||
|
margin-top: 0;
|
||||||
|
-webkit-transition: opacity 250ms ease-in;
|
||||||
|
-moz-transition: opacity 250ms ease-in;
|
||||||
|
-ms-transition: opacity 250ms ease-in;
|
||||||
|
-o-transition: opacity 250ms ease-in;
|
||||||
|
transition: opacity 250ms ease-in;
|
||||||
|
|
||||||
|
&[data-active="1"] {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
-moz-opacity: 1;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
a > span {
|
||||||
|
.inline-block;
|
||||||
|
max-width: 200px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 24px;
|
||||||
|
max-height: 24px;
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.pulse {
|
||||||
|
-webkit-animation: pulsate 2500ms linear;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes pulsate {
|
||||||
|
0% { background: none; }
|
||||||
|
50% { background: #e5e5e5; }
|
||||||
|
100% { background: none; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue