update recording dialogs

This commit is contained in:
Luke Pulverenti 2016-09-20 12:51:16 -04:00
parent df635e0c5b
commit 8aaa2c7e47
78 changed files with 432 additions and 965 deletions

View file

@ -2,10 +2,10 @@
position: relative;
z-index: 1;
vertical-align: middle;
display: inline-block;
display: inline-flex;
align-items: center;
box-sizing: border-box;
width: 100%;
height: 1.72em;
margin: 0;
padding: 0;
overflow: visible;
@ -14,7 +14,8 @@
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
padding-left: 2em;
flex-direction: row-reverse;
justify-content: flex-end;
}
.toggleContainer {
@ -22,11 +23,6 @@
}
.mdl-switch__input {
line-height: 1.72em;
}
.mdl-switch__input {
position: absolute;
width: 0;
height: 0;
margin: 0;
@ -39,26 +35,27 @@
border: none;
}
.mdl-switch__trackContainer {
position: relative;
width: 2.9em;
}
.mdl-switch__track {
background: rgba(255,255,255, 0.26);
position: absolute;
left: 0;
top: .36em;
height: 1em;
width: 2.58em;
border-radius: 1em;
cursor: pointer;
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__track {
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(82,181,75, 0.5);
}
.mdl-switch__input.red:checked + .mdl-switch__label + .mdl-switch__track {
.mdl-switch__input.red:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(204,51,51, 0.5);
}
.mdl-switch__input[disabled] + .mdl-switch__label + .mdl-switch__track {
.mdl-switch__input[disabled] + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__track {
background: rgba(0,0,0, 0.12);
cursor: auto;
}
@ -67,7 +64,7 @@
background: #999;
position: absolute;
left: 0;
top: .15em;
top: -.25em;
height: 1.44em;
width: 1.44em;
border-radius: 50%;
@ -76,21 +73,23 @@
transition-duration: 0.28s;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-property: left;
display: flex;
align-items: center;
justify-content: center;
}
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb {
.mdl-switch__input:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: rgb(82,181,75);
left: 1.146em;
left: 1.466em;
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.mdl-switch__input.red:checked + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb {
.mdl-switch__input.red:checked + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: rgb(204,51,51);
left: 1.146em;
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.mdl-switch__input[disabled] + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb {
.mdl-switch__input[disabled] + .mdl-switch__label + .mdl-switch__trackContainer > .mdl-switch__thumb {
background: rgb(189,189,189);
cursor: auto;
}
@ -109,29 +108,27 @@
background-color: transparent;
}
.mdl-switch__input:focus + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb > .mdl-switch__focus-helper {
.mdl-switch__input:focus + .mdl-switch__label + .mdl-switch__trackContainer .mdl-switch__focus-helper {
box-shadow: 0 0 0px 20px rgba(255,255,255, 0.26);
background-color: rgba(255,255,255, 0.26);
}
.mdl-switch__input:checked:focus + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb > .mdl-switch__focus-helper {
.mdl-switch__input:checked:focus + .mdl-switch__label + .mdl-switch__trackContainer .mdl-switch__focus-helper {
box-shadow: 0 0 0px 20px rgba(82,181,75, 0.26);
background-color: rgba(82,181,75, 0.26);
}
.mdl-switch__input.red:checked:focus + .mdl-switch__label + .mdl-switch__track + .mdl-switch__thumb > .mdl-switch__focus-helper {
.mdl-switch__input.red:checked:focus + .mdl-switch__label + .mdl-switch__trackContainer .mdl-switch__focus-helper {
box-shadow: 0 0 0px 20px rgba(204,51,51, 0.26);
background-color: rgba(204,51,51, 0.26);
}
.mdl-switch__label {
position: relative;
cursor: pointer;
line-height: 1.72em;
margin: 0;
left: 1.52em;
display: inline-flex;
align-items: center;
margin-left: .7em;
}
.mdl-switch__input[disabled] .mdl-switch__label {