koel/resources/assets/sass/partials/_mixins.scss

239 lines
5.3 KiB
SCSS
Raw Normal View History

2015-12-13 04:42:28 +00:00
@mixin vertical-center() {
display: flex;
align-items: center;
justify-content: center;
}
@mixin artist-album-wrapper() {
2015-12-13 04:42:28 +00:00
justify-content: space-between;
flex-wrap: wrap;
display: flex;
2016-04-18 20:26:27 +00:00
align-content: flex-start;
.item {
align-self: flex-start;
}
}
@mixin artist-album-card() {
2015-12-13 04:42:28 +00:00
.item {
flex-direction: column;
margin-bottom: 16px;
width: 23.5%;
position: relative;
.as-list & {
flex-direction: row;
display: flex;
width: 100% !important;
.cover {
flex: 0 0 80px;
height: 80px;
padding-top: 0;
}
footer {
flex: 1;
}
}
2016-03-31 04:05:07 +00:00
.as-list &.filler {
display: none;
}
@media only screen and (max-width: 1200px) {
width: 32%;
}
@media only screen and (max-width: 960px) {
width: 48%;
}
@media only screen and (max-width: 320px) {
width: 100%;
}
html.with-extra-panel & {
width: 32%;
@media only screen and (max-width: 1200px) {
width: 48%;
}
@media only screen and (max-width: 960px) {
width: 100%;
}
}
2015-12-13 04:42:28 +00:00
.cover {
@include vertical_center();
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
width: 100%;
padding-top: 100%;
2015-12-13 04:42:28 +00:00
position: relative;
@mixin control($playBtnWidth, $fontSize, $textIndent) {
width: $playBtnWidth;
height: $playBtnWidth;
line-height: $playBtnWidth;
font-size: $fontSize;
text-indent: $textIndent;
left: calc(50% - #{$playBtnWidth/2});
}
.control {
.as-list & {
@include control(46px, 27px, 2px);
}
@include control(96px, 54px, 5px);
display: none;
text-align: center;
2015-12-13 04:42:28 +00:00
background: #111;
border-radius: 50%;
opacity: .7;
border: 1px solid transparent;
position: absolute;
top: 50%;
transform: translateY(-50%);
2015-12-13 04:42:28 +00:00
transition: .3s;
&:hover {
opacity: 1;
border-color: #fff;
transform: translateY(-50%) scale(1.1);
2015-12-13 04:42:28 +00:00
}
2016-01-07 01:39:38 +00:00
html.touchevents & {
display: block;
}
2015-12-13 04:42:28 +00:00
}
&:before {
content: " ";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
transition: .3s;
}
&:hover {
&:before {
background-color: rgba(0, 0, 0, .4);
}
.control {
display: block;
}
}
}
footer {
padding: 16px;
background: #333;
flex: 1;
}
.name {
font-weight: 500;
}
.meta {
color: $color2ndText;
margin-top: 4px;
2016-06-02 09:46:01 +00:00
font-size: .92rem;
2015-12-13 04:42:28 +00:00
}
a.name, a.artist {
display: block;
color: $colorMainText;
2015-12-13 04:42:28 +00:00
&:hover {
color: $colorHighlight;
}
.as-list & {
display: inline;
}
}
2016-04-17 15:38:06 +00:00
.nope {
opacity: .5;
}
2015-12-13 04:42:28 +00:00
}
}
@mixin inset-when-pressed() {
&:active {
box-shadow: inset 0px 10px 10px -10px rgba(0,0,0,1);
}
}
@mixin button-group() {
display: flex;
position: relative;
2016-01-03 10:24:12 +00:00
min-width: 192px;
justify-content: flex-end;
button {
$buttonHeight: 28px;
2016-01-03 10:24:12 +00:00
2016-06-02 09:46:01 +00:00
font-size: .92rem;
height: $buttonHeight;
2016-06-02 09:46:01 +00:00
padding: 0 1.23rem;
line-height: $buttonHeight;
text-transform: uppercase;
display: inline-block;
border-radius: $buttonHeight/2 0px 0px $buttonHeight/2;
&:last-of-type {
border-top-right-radius: $buttonHeight/2;
border-bottom-right-radius: $buttonHeight/2;
}
&:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
margin-left: 1px;
}
i {
margin-right: 4px;
}
}
}
2016-01-03 10:24:12 +00:00
@mixin context-menu() {
font-weight: $fontWeight_Thin;
font-size: $fontSize;
2016-03-05 09:01:12 +00:00
padding: 4px 0;
min-width: 144px;
2016-01-03 10:24:12 +00:00
color: #111;
background-color: rgb(232, 232, 232);
2016-03-05 09:01:12 +00:00
position: fixed;
2016-01-03 10:24:12 +00:00
border-radius: 5px;
display: flex;
justify-content: center;
flex-direction: column;
2016-03-05 09:01:12 +00:00
z-index: 1001;
2016-01-03 10:24:12 +00:00
align-items: stretch;
text-align: left;
box-shadow: inset 0 0px 0 rgba(255,255,255,.6), 0 22px 70px 4px rgba(0,0,0,0.56), 0 0 0 1px rgba(0, 0, 0, 0.3);
input[type="search"], input[type="text"], input[type="email"], input[type="url"] {
background: #fff;
&:focus {
background: $colorDirtyInputBgr;
}
}
}