1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/thirdparty/paper-button-style.css

252 lines
4.2 KiB
CSS
Raw Normal View History

2015-06-16 00:52:01 -04:00
paper-button {
font-weight: 500;
vertical-align: middle;
2015-06-18 15:43:47 -04:00
margin-top: 5px;
margin-bottom: 5px;
2015-06-16 00:52:01 -04:00
}
paper-button.block {
display: block;
}
2015-06-19 12:36:51 -04:00
paper-button.blue {
color: #03a9f4;
}
paper-button.blue:hover {
background: #e1f5f3;
}
2015-06-19 18:01:47 -04:00
paper-button.menuButton {
color: #212121;
text-align: left;
}
paper-button.menuButton:hover {
background: #e1f5f3;
}
2015-06-19 12:36:51 -04:00
paper-button.ripple::shadow paper-ripple {
color: #ff3bee;
}
paper-button.ripple paper-ripple {
color: #ff3bee;
}
2015-06-16 13:37:49 -04:00
paper-button.submit {
2015-06-16 00:52:01 -04:00
color: #4285f4;
}
2015-06-16 13:37:49 -04:00
paper-button[raised].submit {
2015-06-16 00:52:01 -04:00
background: #4285f4;
color: #fff;
}
2015-06-16 13:37:49 -04:00
paper-button.more {
2015-06-17 21:41:22 -04:00
color: #EC407A;
2015-06-16 00:52:01 -04:00
}
2015-06-16 13:37:49 -04:00
paper-button[raised].more {
2015-06-17 21:41:22 -04:00
background: #EC407A;
2015-06-16 13:37:49 -04:00
color: #fff;
2015-06-16 00:52:01 -04:00
}
2015-06-16 13:37:49 -04:00
paper-button.secondary {
2015-06-16 00:52:01 -04:00
color: #52B54B;
}
2015-06-16 13:37:49 -04:00
paper-button[raised].secondary {
2015-06-16 00:52:01 -04:00
background: #52B54B;
color: #fff;
}
2015-06-23 18:13:06 -04:00
paper-button.accent {
color: #52B54B;
}
paper-button[raised].accent {
background: #52B54B;
color: #fff;
}
2015-06-18 02:23:44 -04:00
paper-button.alt {
color: #F57F17;
}
paper-button[raised].alt {
background: #F57F17;
color: #fff;
}
2015-06-23 18:13:06 -04:00
.ui-page-theme-b paper-button.cancel {
color: #444;
}
2015-06-16 00:52:01 -04:00
2015-06-23 18:13:06 -04: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-16 00:52:01 -04:00
2015-06-18 15:43:47 -04:00
.ui-page-theme-b paper-button.subdued:not([disabled]) {
2015-06-19 00:23:55 -04:00
color: #484848;
2015-06-18 15:43:47 -04:00
}
2015-06-18 02:23:44 -04:00
2015-06-18 15:43:47 -04:00
.ui-page-theme-b paper-button[raised].subdued:not([disabled]) {
2015-06-19 00:23:55 -04:00
background: #484848;
2015-06-18 14:29:44 -04:00
color: #fff;
}
2015-06-16 00:52:01 -04:00
2015-06-18 15:43:47 -04:00
.ui-page-theme-b paper-button[raised][disabled].subdued {
background: #111;
2015-06-18 14:29:44 -04:00
}
2015-06-16 00:52:01 -04:00
2015-06-18 14:29:44 -04:00
paper-button.hover:hover {
background: #eee;
}
2015-06-16 00:52:01 -04:00
2015-06-18 14:29:44 -04:00
paper-button.ripple::shadow paper-ripple {
color: var(--paper-pink-a200);
}
2015-06-16 00:52:01 -04:00
2015-06-18 14:29:44 -04:00
paper-button.ripple paper-ripple {
color: var(--paper-pink-a200);
}
2015-06-16 00:52:01 -04:00
2015-06-18 14:29:44 -04:00
paper-button span {
vertical-align: middle;
}
2015-06-18 02:23:44 -04:00
2015-06-18 14:29:44 -04:00
paper-button:not(.iconRight) iron-icon, paper-button:not(.iconRight) .fa {
margin-right: .5em;
}
2015-06-16 00:52:01 -04:00
2015-06-18 14:29:44 -04:00
paper-button:not(.iconRight) .material-icons {
margin-right: .25em;
}
2015-06-18 02:23:44 -04:00
2015-06-18 14:29:44 -04:00
paper-button.iconRight iron-icon, paper-button.iconRight .fa, paper-button.iconRight .material-icons {
position: absolute;
right: 5px;
top: 5px;
}
paper-button .material-icons {
font-size: 150%;
vertical-align: middle;
}
paper-button .fa {
vertical-align: middle;
}
2015-06-18 02:23:44 -04:00
2015-06-16 00:52:01 -04:00
.clearButton {
background: transparent;
border: 0;
padding: 0;
cursor: pointer;
outline: none;
color: inherit;
width: 100%;
2015-06-16 13:37:49 -04:00
vertical-align: middle;
2015-06-16 00:52:01 -04:00
}
.clearLink {
text-decoration: none;
font-weight: inherit !important;
2015-06-16 13:37:49 -04:00
vertical-align: middle;
2015-06-19 14:34:21 -04:00
color: inherit !important;
2015-06-16 00:52:01 -04:00
}
paper-button.mini {
min-width: initial;
}
paper-button.mini .content {
2015-06-18 02:23:44 -04:00
padding: 0.3em 0.7em;
2015-06-16 00:52:01 -04:00
}
2015-06-16 13:37:49 -04:00
2015-06-23 18:13:06 -04:00
paper-button.mini.noIcon .content {
padding: 0.5em 0.7em;
}
2015-06-16 13:37:49 -04:00
paper-toast {
z-index: 9999999;
}
2015-06-18 02:23:44 -04:00
paper-button.notext {
2015-06-18 14:29:44 -04:00
min-width: 2.8em;
2015-06-18 02:23:44 -04:00
}
2015-06-18 14:29:44 -04:00
paper-button.notext .content {
padding-left: 0 !important;
padding-right: 0 !important;
}
2015-06-18 02:23:44 -04:00
paper-button.notext iron-icon {
margin-right: 0;
}
2015-06-16 13:37:49 -04:00
#docspinner {
display: block;
margin-top: -14px;
margin-left: -14px;
position: fixed;
top: 50%;
left: 50%;
z-index: 9999999;
}
2015-06-17 11:39:46 -04:00
/*paper-toast {
background-color: #eee;
color: #000;
2015-06-17 21:41:22 -04:00
}*/
2015-06-19 12:36:51 -04:00
.bottomFab {
bottom: 30px;
}
2015-06-19 14:34:21 -04:00
2015-06-19 18:01:47 -04:00
paper-dialog {
border-radius: 4px;
2015-06-20 00:48:45 -04:00
z-index: 999999 !important;
2015-06-19 18:01:47 -04:00
}
2015-06-19 14:34:21 -04:00
iron-overlay-backdrop {
z-index: 999998 !important;
}
2015-06-19 18:01:47 -04:00
/* These values default to 24px and create huge white padding around the dialog content. */
.scrollable.paper-dialog-scrollable {
padding: 0 12px;
}
paper-dialog > *:last-child {
margin-bottom: 12px;
}
paper-dialog > *:first-child {
margin-top: 12px;
}
2015-06-24 00:38:46 -04:00
paper-icon-button paper-ripple {
color: inherit !important;
}
iron-overlay-backdrop {
background-color: transparent !important;
}
iron-overlay-backdrop.visibleBackground {
background-color: #000 !important;
}