You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
1.6 KiB
Plaintext

10 years ago
@import "../less/keyframes";
.taskbar {
display: none;
z-index: 10001;
10 years ago
margin-top: 0;
.transition(.15s ease-in opacity);
10 years ago
background: none;
border: none;
10 years ago
&[data-active="1"] {
display: block;
}
&:hover {
-moz-opacity: 1;
opacity: 1;
}
&.navbar {
min-height: 32px;
}
.navbar-nav {
padding-right: 15px;
padding-bottom: 15px;
10 years ago
li {
float: left;
&.new a {
-webkit-animation: taskbar-active 3s infinite;
-moz-animation: taskbar-active 3s infinite;
-o-animation: taskbar-active 3s infinite;
animation: taskbar-active 3s infinite;
}
10 years ago
a {
padding: 3px 15px;
font-size: 13px;
10 years ago
border-radius: 50%;
height: 50px;
width: 50px;
> span {
display: none;
}
10 years ago
}
img {
max-width: 24px;
max-height: 24px;
margin-right: 1em;
}
10 years ago
&.pulse {
-webkit-animation: pulsate 2500ms linear;
-webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes pulsate {
0% { background: none; }
50% { background: #e5e5e5; }
100% { background: none; }
}
&.taskbar-composer {
a, a:hover, a:focus, a:active {
background: #f44336;
}
}
10 years ago
&.taskbar-chat {
a, a:hover, a:focus, a:active {
background: none;
background-size: cover;
i {
color: @gray;
}
}
}
&.taskbar-composer, &.taskbar-chat {
a {
text-align: center;
margin-left: 15px;
i {
font-size: 18px;
line-height: 42px;
color: #FFF;
}
}
}
10 years ago
}
}
@media (max-width: 979px) {
/*
Gets in the way of entering text when writing posts
*/
display: none !important;
}
}