Pony.fm/public/styles/components.less

97 lines
1.3 KiB
Text
Raw Normal View History

2013-07-25 23:33:04 +02:00
@import 'base/bootstrap/bootstrap';
@import 'mixins';
.fade-hide, .fade-show {
.transition(all cubic-bezier(0.250, 0.460, 0.450, 0.940) 350ms);
}
.fade-hide {
opacity:1;
}
.fade-hide.fade-hide-active {
opacity:0;
}
.fade-show {
opacity:0;
}
.fade-show.fade-show-active {
opacity:1;
}
2013-07-26 11:20:34 +02:00
html body {
.ui-datepicker {
.border-radius(0px);
font-size: 9pt;
padding: 3px;
.ui-datepicker-header {
.border-radius(0px);
border: none;
border-bottom: 1px solid #777;
margin: -3px;
}
.ui-datepicker-calendar {
}
}
}
2013-07-25 23:33:04 +02:00
.dropdowns {
.clearfix();
list-style: none;
padding: 0px;
margin: 10px 0px;
> li {
margin: 0px 5px;
padding: 0px;
float: left;
> a {
.border-radius(0px);
padding: 3px 10px;
font-size: 8pt;
}
ul {
.border-radius(0px);
padding: 0px;
li.selected {
a {
#gradient>.vertical(@green, darken(@green, 5%));
color: #fff;
font-weight: bold;
&:hover {
#gradient>.vertical(fadeout(@green, 20%), fadeout(darken(@green, 5%), 20%));
}
}
}
a {
padding: 3px 10px;
font-size: 8pt;
}
}
}
2013-07-27 05:00:45 +02:00
}
.pfm-popup {
.box-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
2013-07-28 08:07:25 +02:00
z-index: 1000;
2013-07-27 05:00:45 +02:00
position: absolute;
display: none;
border: 1px solid rgba(0, 0, 0, 0.2);
background: #fff;
2013-07-28 08:07:25 +02:00
overflow-y: auto;
2013-07-27 05:00:45 +02:00
&.open {
display: block;
}
2013-07-25 23:33:04 +02:00
}