mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-22 05:51:52 +00:00
105 lines
2 KiB
SCSS
105 lines
2 KiB
SCSS
@import '../../core/stylesheets/variables.scss';
|
|
|
|
$board-width: 24px;
|
|
$board-max-width: 24px;
|
|
|
|
.md-boards {
|
|
width: 100%;
|
|
height: 100% !important;
|
|
display: flex;
|
|
flex-flow: column;
|
|
position: relative;
|
|
|
|
&.md-transition-off * {
|
|
transition: none !important;
|
|
}
|
|
|
|
&.md-dynamic-height {
|
|
.md-boards-content {
|
|
transition: height $swift-ease-out-duration $swift-ease-out-timing-function;
|
|
}
|
|
}
|
|
|
|
.md-boards-navigation {
|
|
position: absolute !important;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 48px;
|
|
min-height: 48px;
|
|
position: relative;
|
|
z-index: 1;
|
|
display: flex;
|
|
transition: $swift-ease-out;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.md-board-header {
|
|
min-width: $board-width;
|
|
max-width: $board-max-width;
|
|
margin: 0;
|
|
padding: 0 12px;
|
|
display: inline-block;
|
|
position: relative;
|
|
cursor: pointer;
|
|
border: 0;
|
|
background: none;
|
|
transition: $swift-ease-out;
|
|
font-family: inherit;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
|
|
&.md-disabled {
|
|
cursor: default;
|
|
pointer-events: none;
|
|
user-select: none;
|
|
-webkit-user-drag: none;
|
|
}
|
|
}
|
|
|
|
.md-board-header-container {
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.md-icon {
|
|
margin: 0;
|
|
}
|
|
|
|
.md-icon:not(.md-control) {
|
|
width: 16px;
|
|
min-width: 16px;
|
|
height: 16px;
|
|
min-height: 16px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
.md-boards-content {
|
|
width: 100%;
|
|
height: 100% !important;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.md-boards-wrapper {
|
|
width: 9999em;
|
|
height: 100% !important;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
transform: translate3d(0, 0, 0);
|
|
transition: transform $swift-ease-out-duration $swift-ease-out-timing-function;
|
|
}
|
|
|
|
.md-board {
|
|
padding: 16px;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|