jellyfin-web/dashboard-ui/thirdparty/paper-button-style.css

455 lines
8.0 KiB
CSS
Raw Normal View History

2015-06-15 21:52:01 -07:00
paper-button {
font-weight: 500;
vertical-align: middle;
2015-06-18 12:43:47 -07:00
margin-top: 5px;
margin-bottom: 5px;
2015-06-15 21:52:01 -07:00
}
paper-button.block {
display: block;
}
2015-06-19 09:36:51 -07:00
paper-button.blue {
color: #03a9f4;
}
paper-button.blue:hover {
background: #e1f5f3;
}
2015-06-19 15:01:47 -07:00
paper-button.menuButton {
color: #212121;
text-align: left;
}
paper-button.menuButton:hover {
background: #e1f5f3;
}
2015-06-19 09:36:51 -07:00
paper-button.ripple::shadow paper-ripple {
color: #ff3bee;
}
paper-button.ripple paper-ripple {
color: #ff3bee;
}
2015-06-16 10:37:49 -07:00
paper-button.submit {
2015-06-15 21:52:01 -07:00
color: #4285f4;
}
2015-06-16 10:37:49 -07:00
paper-button[raised].submit {
2015-06-15 21:52:01 -07:00
background: #4285f4;
color: #fff;
}
2015-06-16 10:37:49 -07:00
paper-button.more {
2015-06-17 18:41:22 -07:00
color: #EC407A;
2015-06-15 21:52:01 -07:00
}
2015-06-16 10:37:49 -07:00
paper-button[raised].more {
2015-06-17 18:41:22 -07:00
background: #EC407A;
2015-06-16 10:37:49 -07:00
color: #fff;
2015-06-15 21:52:01 -07:00
}
2015-06-16 10:37:49 -07:00
paper-button.secondary {
2015-06-15 21:52:01 -07:00
color: #52B54B;
}
2015-06-16 10:37:49 -07:00
paper-button[raised].secondary {
2015-06-15 21:52:01 -07:00
background: #52B54B;
color: #fff;
}
2015-06-23 15:13:06 -07:00
paper-button.accent {
color: #52B54B;
}
paper-button[raised].accent {
background: #52B54B;
color: #fff;
}
2015-06-17 23:23:44 -07:00
paper-button.alt {
color: #F57F17;
}
paper-button[raised].alt {
background: #F57F17;
color: #fff;
}
2015-06-23 15:13:06 -07:00
.ui-page-theme-b paper-button.cancel {
color: #444;
}
2015-06-15 21:52:01 -07:00
2015-06-23 15:13:06 -07:00
.ui-page-theme-b paper-button[raised].cancel {
background: #444;
color: #fff;
}
paper-button.cancelDark {
color: #444;
}
paper-button[raised].cancelDark {
background: #444;
color: #fff;
}
2015-06-15 21:52:01 -07:00
2015-06-18 12:43:47 -07:00
.ui-page-theme-b paper-button.subdued:not([disabled]) {
2015-06-18 21:23:55 -07:00
color: #484848;
2015-06-18 12:43:47 -07:00
}
2015-06-17 23:23:44 -07:00
2015-06-18 12:43:47 -07:00
.ui-page-theme-b paper-button[raised].subdued:not([disabled]) {
2015-06-18 21:23:55 -07:00
background: #484848;
2015-06-18 11:29:44 -07:00
color: #fff;
}
2015-06-15 21:52:01 -07:00
2015-06-18 12:43:47 -07:00
.ui-page-theme-b paper-button[raised][disabled].subdued {
background: #111;
2015-06-18 11:29:44 -07:00
}
2015-06-15 21:52:01 -07:00
2015-06-18 11:29:44 -07:00
paper-button.hover:hover {
background: #eee;
}
2015-06-15 21:52:01 -07:00
2015-06-18 11:29:44 -07:00
paper-button.ripple::shadow paper-ripple {
color: var(--paper-pink-a200);
}
2015-06-15 21:52:01 -07:00
2015-06-18 11:29:44 -07:00
paper-button.ripple paper-ripple {
color: var(--paper-pink-a200);
}
2015-06-15 21:52:01 -07:00
2015-06-18 11:29:44 -07:00
paper-button span {
vertical-align: middle;
}
2015-06-17 23:23:44 -07:00
2015-06-18 11:29:44 -07:00
paper-button:not(.iconRight) iron-icon, paper-button:not(.iconRight) .fa {
margin-right: .5em;
}
2015-06-15 21:52:01 -07:00
2015-07-09 21:44:21 -07:00
paper-button.iconRight iron-icon, paper-button.iconRight .fa {
2015-06-18 11:29:44 -07:00
position: absolute;
right: 5px;
top: 5px;
}
paper-button .fa {
vertical-align: middle;
}
2015-06-17 23:23:44 -07:00
2015-06-15 21:52:01 -07:00
.clearButton {
background: transparent;
border: 0;
padding: 0;
cursor: pointer;
outline: none;
color: inherit;
width: 100%;
2015-06-16 10:37:49 -07:00
vertical-align: middle;
2015-07-20 21:22:46 -07:00
font-family: inherit;
font-weight: inherit;
2015-06-15 21:52:01 -07:00
}
.clearLink {
text-decoration: none;
font-weight: inherit !important;
2015-06-16 10:37:49 -07:00
vertical-align: middle;
2015-06-19 11:34:21 -07:00
color: inherit !important;
2015-06-15 21:52:01 -07:00
}
paper-button.mini {
min-width: initial;
}
paper-button.mini .content {
2015-08-20 19:36:30 -07:00
padding: 0.5em 0.7em;
2015-06-15 21:52:01 -07:00
}
2015-06-16 10:37:49 -07:00
2015-06-23 15:13:06 -07:00
paper-button.mini.noIcon .content {
padding: 0.5em 0.7em;
}
2015-06-16 10:37:49 -07:00
2015-08-21 19:59:10 -07:00
paper-button.mini iron-icon {
height: 20px;
width: 20px;
}
2015-06-16 10:37:49 -07:00
paper-toast {
z-index: 9999999;
}
2015-06-17 23:23:44 -07:00
paper-button.notext {
2015-06-18 11:29:44 -07:00
min-width: 2.8em;
2015-06-17 23:23:44 -07:00
}
2015-06-18 11:29:44 -07:00
paper-button.notext .content {
padding-left: 0 !important;
padding-right: 0 !important;
}
2015-06-17 23:23:44 -07:00
paper-button.notext iron-icon {
margin-right: 0;
}
2015-07-15 04:26:47 -07:00
.docspinner {
2015-06-16 10:37:49 -07:00
display: block;
margin-top: -14px;
margin-left: -14px;
position: fixed;
top: 50%;
left: 50%;
z-index: 9999999;
}
2015-06-17 08:39:46 -07:00
/*paper-toast {
background-color: #eee;
color: #000;
2015-06-17 18:41:22 -07:00
}*/
2015-06-19 09:36:51 -07:00
.bottomFab {
2015-08-17 11:04:58 -07:00
bottom: 90px;
2015-06-19 09:36:51 -07:00
}
2015-06-19 11:34:21 -07:00
2015-06-19 15:01:47 -07:00
paper-dialog {
border-radius: 4px;
2015-06-19 21:48:45 -07:00
z-index: 999999 !important;
2015-06-19 15:01:47 -07:00
}
2015-06-19 11:34:21 -07:00
iron-overlay-backdrop {
z-index: 999998 !important;
}
2015-06-19 15:01:47 -07:00
/* These values default to 24px and create huge white padding around the dialog content. */
.scrollable.paper-dialog-scrollable {
padding: 0 12px;
}
2015-06-25 14:50:56 -07:00
paper-dialog > *:last-child:not(.buttons) {
2015-06-19 15:01:47 -07:00
margin-bottom: 12px;
}
2015-06-25 14:50:56 -07:00
paper-dialog > *:first-child:not(h2) {
2015-06-19 15:01:47 -07:00
margin-top: 12px;
}
2015-06-23 21:38:46 -07:00
paper-icon-button paper-ripple {
color: inherit !important;
}
2015-06-25 14:50:56 -07:00
paper-dialog + iron-overlay-backdrop {
2015-06-23 21:38:46 -07:00
background-color: transparent !important;
}
2015-06-25 14:50:56 -07:00
paper-dialog[role="alertdialog"] + iron-overlay-backdrop {
background-color: #000 !important;
}
2015-06-26 08:53:49 -07:00
2015-07-01 22:08:05 -07:00
paper-tabs {
2015-06-26 08:53:49 -07:00
background-color: #111;
color: #fff;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
2015-07-01 22:08:05 -07:00
paper-tabs.bottomTabs {
2015-06-26 08:53:49 -07:00
box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.15);
}
paper-tab {
text-transform: uppercase;
2015-07-01 08:47:41 -07:00
font-weight: 400;
2015-06-26 08:53:49 -07:00
}
2015-07-01 22:08:05 -07:00
paper-tabs #selectionBar {
2015-06-26 08:53:49 -07:00
background-color: #38c !important;
}
2015-07-01 22:08:05 -07:00
paper-tabs paper-ripple {
2015-06-26 08:53:49 -07:00
color: #38c !important;
}
paper-fab.subdued {
background: #484848;
color: #fff;
}
paper-fab.subdued paper-material.keyboard-focus {
background: #686868 !important;
}
.ui-page-theme-b paper-fab[disabled].subdued {
background: #222;
}
2015-06-26 09:24:21 -07:00
paper-fab.white {
background: #fff;
color: #000;
}
paper-fab.white paper-material.keyboard-focus {
background: #01579b !important;
color: #fff;
}
2015-06-26 08:53:49 -07:00
paper-fab.blue {
background: #03a9f4;
}
paper-fab.blue paper-material.keyboard-focus {
background: #01579b !important;
}
paper-fab.square {
border-radius: 5px;
}
2015-06-26 20:27:38 -07:00
paper-slider {
width: 100%;
}
2015-06-30 10:21:20 -07:00
paper-menu-item {
padding: .35em .5em;
}
2015-07-01 22:08:05 -07:00
paper-menu-item iron-icon {
margin-right: 1.5em;
}
2015-06-30 10:21:20 -07:00
.actionSheetMenuItem {
cursor: pointer;
}
2015-07-01 22:08:05 -07:00
.actionSheetMenuItem:hover {
background: #eee;
}
2015-06-30 10:21:20 -07:00
.scrollablePaperTabs paper-icon-button {
display: none !important;
}
/*.scrollablePaperTabs #tabsContainer {
text-align: center;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
white-space: nowrap;
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.scrollablePaperTabs #tabsContainer::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.scrollablePaperTabs #tabsContent {
position: static !important;
}*/
2015-07-28 12:42:24 -07:00
.ui-page-theme-b paper-item-body [secondary] {
color: #aaa;
}
.ui-page-theme-b paper-checkbox {
color: #fff;
}
.ui-page-theme-b paper-checkbox paper-ripple {
color: inherit !important;
}
.ui-page-theme-b paper-checkbox #checkboxLabel.paper-checkbox {
color: inherit;
}
.ui-page-theme-b .paperCheckboxFieldDescription {
color: #ccc;
}
.ui-page-theme-b paper-checkbox #checkbox.paper-checkbox {
border-color: #ccc;
}
.ui-page-theme-b paper-checkbox #checkbox.checked.paper-checkbox {
background-color: #2ad;
border-color: #2ad;
}
2015-08-16 21:08:33 -07:00
.paperCheckboxList paper-checkbox {
display: block;
padding: .5em 0;
}
2015-08-19 09:43:23 -07:00
paper-input label, paper-textarea label {
font-size: 18px !important;
2015-08-16 11:37:53 -07:00
font-family: inherit !important;
2015-08-18 08:25:57 -07:00
}
2015-08-19 09:43:23 -07:00
.ui-page-theme-b paper-input label, .ui-page-theme-b paper-textarea label {
color: #858585 !important;
}
2015-08-20 13:54:00 -07:00
.ui-page-theme-a paper-input label, .ui-page-theme-a paper-textarea label {
2015-08-20 14:58:07 -07:00
color: #333 !important;
2015-08-20 13:54:00 -07:00
}
2015-08-18 23:12:58 -07:00
.ui-page-theme-a .label-is-highlighted label {
color: green !important;
}
2015-08-18 08:25:57 -07:00
.ui-page-theme-b .label-is-highlighted label {
color: #52B54B !important;
2015-07-28 12:42:24 -07:00
}
2015-08-16 11:37:53 -07:00
.ui-page-theme-b paper-input input, .ui-page-theme-b paper-textarea textarea {
2015-07-28 12:42:24 -07:00
color: #fff !important;
}
2015-08-18 23:12:58 -07:00
paper-input .focused-line, paper-textarea .focused-line {
2015-07-28 12:42:24 -07:00
background-color: #52B54B !important;
}
2015-08-16 11:37:53 -07:00
.ui-page-theme-b .unfocused-line.paper-input-container, .ui-page-theme-b .unfocused-line.paper-textarea-container {
2015-08-16 13:26:49 -07:00
background: #454545;
2015-07-28 12:42:24 -07:00
}
2015-08-02 12:08:55 -07:00
2015-07-30 08:18:07 -07:00
paper-textarea.mono textarea {
2015-08-02 12:08:55 -07:00
font-family: monospace !important;
}
.listAvatar {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
background: #ccc;
}
.paperList {
padding-top: 12px;
margin: 12px auto;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
2015-08-17 09:52:56 -07:00
background-color: #fff;
}
.ui-page-theme-b .paperList {
background-color: #303030;
2015-08-02 12:08:55 -07:00
}
2015-08-14 07:42:40 -07:00
paper-dropdown-menu {
text-align: left;
margin: auto;
width: 100%;
display: inline-block;
}
2015-08-16 11:37:53 -07:00
paper-dropdown-menu paper-item {
display: block;
2015-08-17 09:52:56 -07:00
}