-
Notifications
You must be signed in to change notification settings - Fork 0
/
_mixins.scss
111 lines (97 loc) · 2.69 KB
/
_mixins.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
//
// Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
@import "@material/animation/functions";
@import "@material/animation/variables";
@import "@material/theme/mixins";
@import "@material/theme/variables";
@import "@material/typography/mixins";
@mixin mdc-drawer-toolbar-spacer_() {
.mdc-drawer__toolbar-spacer {
display: flex;
position: relative;
flex-direction: row;
flex-shrink: 0;
align-items: center;
box-sizing: border-box;
height: 56px;
padding: 16px;
border-bottom: 1px solid rgba(0, 0, 0, .12);
// TODO(sgomes): replace with global breakpoints when we have them
@media (min-width: 600px) {
height: 64px;
}
}
}
@mixin mdc-drawer-header_() {
// Use aspect ratio trick to maintain 16:9 aspect ratio on the header
// styline things header is a type
// stylelint-disable selector-max-type
.mdc-drawer__header {
position: relative;
}
.mdc-drawer__header::before {
display: block;
padding-top: 9 / 16 * 100%;
content: "";
}
.mdc-drawer__header-content {
display: flex;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
align-items: flex-end;
box-sizing: border-box;
padding: 16px;
}
// stylelint-enable selector-max-type
}
@mixin mdc-drawer-list_() {
.mdc-list-item {
@include mdc-typography(subtitle2);
position: relative;
outline: none;
color: inherit;
text-decoration: none;
}
.mdc-list-item__graphic {
color: rgba(0, 0, 0, .54);
}
}
@mixin mdc-drawer-base_() {
@include mdc-drawer-toolbar-spacer_;
@include mdc-drawer-header_;
@include mdc-drawer-list_;
}
@mixin mdc-drawer-fill-color($color) {
&.mdc-drawer--permanent,
.mdc-drawer__drawer {
@include mdc-theme-prop(background-color, $color);
}
}
@mixin mdc-drawer-ink-color($color) {
@include mdc-theme-prop(color, $color);
}
@mixin mdc-drawer-scrim-color($color, $opacity) {
&::before {
background-color: rgba(mdc-theme-prop-value($color), $opacity);
}
}
@mixin mdc-drawer-fill-color-accessible($color) {
@include mdc-drawer-ink-color(mdc-theme-accessible-ink-color($color));
@include mdc-drawer-fill-color($color);
}