update metadata editor
This commit is contained in:
parent
c08a709ad1
commit
0db16cad5a
44 changed files with 1125 additions and 438 deletions
|
@ -192,3 +192,198 @@ paper-tab {
|
|||
/* Eliminate transparency to prevent clicks from passing through to the elements underneath */
|
||||
background-color: rgb(26,26,26);
|
||||
}
|
||||
|
||||
|
||||
/* Checkboxes */
|
||||
input[type='checkbox'] {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
-ms-appearance: none;
|
||||
-o-appearance: none;
|
||||
appearance: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
height: 31px;
|
||||
width: 51px;
|
||||
position: relative;
|
||||
border-radius: 16px;
|
||||
cursor: pointer;
|
||||
outline: 0;
|
||||
z-index: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
-webkit-transition-duration: 600ms;
|
||||
-moz-transition-duration: 600ms;
|
||||
transition-duration: 600ms;
|
||||
-webkit-transition-timing-function: ease-in-out;
|
||||
-moz-transition-timing-function: ease-in-out;
|
||||
transition-timing-function: ease-in-out;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-text-size-adjust: none;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
.ui-body-a input[type='checkbox'] {
|
||||
background-color: #e5e5e5;
|
||||
}
|
||||
|
||||
.ui-body-b input[type='checkbox'] {
|
||||
background-color: #1f1f1f;
|
||||
}
|
||||
|
||||
input[type='checkbox']::before {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
height: 27px;
|
||||
width: 47px;
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
left: 2px;
|
||||
top: 2px;
|
||||
border-radius: 16px;
|
||||
z-index: 1;
|
||||
-webkit-transition-duration: 300ms;
|
||||
-moz-transition-duration: 300ms;
|
||||
transition-duration: 300ms;
|
||||
-webkit-transform: scale(1);
|
||||
-moz-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
-o-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
.ui-body-a input[type='checkbox']::before {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.ui-body-b input[type='checkbox']::before {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
input[type='checkbox']::after {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
height: 27px;
|
||||
width: 27px;
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
border-radius: 27px;
|
||||
background: #ffffff;
|
||||
z-index: 2;
|
||||
top: 2px;
|
||||
left: 2px;
|
||||
box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.25), 0px 4px 11px 0px rgba(0, 0, 0, 0.08), -1px 3px 3px 0px rgba(0, 0, 0, 0.14);
|
||||
-webkit-transition: -webkit-transform 300ms, width 280ms;
|
||||
-moz-transition: -moz-transform 300ms, width 280ms;
|
||||
transition: transform 300ms, width 280ms;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
-moz-transform: translate3d(0, 0, 0);
|
||||
-ms-transform: translate3d(0, 0, 0);
|
||||
-o-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
-webkit-transition-timing-function: cubic-bezier(0.42, 0.8, 0.58, 1.2);
|
||||
-moz-transition-timing-function: cubic-bezier(0.42, 0.8, 0.58, 1.2);
|
||||
transition-timing-function: cubic-bezier(0.42, 0.8, 0.58, 1.2);
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked {
|
||||
background-color: #4CD964;
|
||||
background-image: -webkit-linear-gradient(-90deg, #4CD964 0%, #4dd865 100%);
|
||||
background-image: linear-gradient(-180deg,#4CD964 0%, #4dd865 100%);
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked::after {
|
||||
-webkit-transform: translate3d(16px, 0, 0);
|
||||
-moz-transform: translate3d(16px, 0, 0);
|
||||
-ms-transform: translate3d(16px, 0, 0);
|
||||
-o-transform: translate3d(16px, 0, 0);
|
||||
transform: translate3d(16px, 0, 0);
|
||||
right: 18px;
|
||||
left: inherit;
|
||||
}
|
||||
|
||||
input[type='checkbox']:active::after {
|
||||
width: 35px;
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked::before, input[type='checkbox']:active::before {
|
||||
-webkit-transform: scale(0);
|
||||
-moz-transform: scale(0);
|
||||
-ms-transform: scale(0);
|
||||
-o-transform: scale(0);
|
||||
transform: scale(0);
|
||||
}
|
||||
|
||||
input[type='checkbox']:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: default;
|
||||
-webkit-transition: none;
|
||||
-moz-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
input[type='checkbox']:disabled:active::before, input[type='checkbox']:disabled:active::after, input[type='checkbox']:disabled:checked:active::before, input[type='checkbox']:disabled:checked::before {
|
||||
width: 27px;
|
||||
-webkit-transition: none;
|
||||
-moz-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
input[type='checkbox']:disabled:active::before {
|
||||
height: 27px;
|
||||
width: 41px;
|
||||
-webkit-transform: translate3d(6px, 0, 0);
|
||||
-moz-transform: translate3d(6px, 0, 0);
|
||||
-ms-transform: translate3d(6px, 0, 0);
|
||||
-o-transform: translate3d(6px, 0, 0);
|
||||
transform: translate3d(6px, 0, 0);
|
||||
}
|
||||
|
||||
input[type='checkbox']:disabled:checked:active::before {
|
||||
height: 27px;
|
||||
width: 27px;
|
||||
-webkit-transform: scale(0);
|
||||
-moz-transform: scale(0);
|
||||
-ms-transform: scale(0);
|
||||
-o-transform: scale(0);
|
||||
transform: scale(0);
|
||||
}
|
||||
|
||||
.ui-body-a input[type='checkbox'] {
|
||||
background-color: #e5e5e5;
|
||||
}
|
||||
|
||||
.ui-body-b input[type='checkbox'] {
|
||||
background-color: #151515;
|
||||
}
|
||||
|
||||
.ui-body-a input[type='checkbox']::before {
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.ui-body-b input[type='checkbox']::before {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.ui-body-a input[type='checkbox']::after {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.ui-body-b input[type='checkbox']::after {
|
||||
background: #444;
|
||||
}
|
||||
|
||||
input[type='checkbox']:checked {
|
||||
background-color: #4CD964;
|
||||
background-image: -webkit-linear-gradient(-90deg, #4CD964 0%, #4dd865 100%);
|
||||
background-image: linear-gradient(-180deg,#4CD964 0%, #4dd865 100%);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue