27 lines
638 B
CSS
27 lines
638 B
CSS
/* Styles used for loopback explorer customizations */
|
|
.accessTokenDisplay {
|
|
color: white;
|
|
margin-right: 10px;
|
|
}
|
|
.accessTokenDisplay.set {
|
|
border-bottom: 1px dotted #333; position: relative; cursor: pointer;
|
|
}
|
|
.accessTokenDisplay.set:hover:after {
|
|
content: attr(data-tooltip);
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
font-size: 12px;
|
|
background: rgba(0, 0, 0, 0.85);
|
|
padding: 3px 7px;
|
|
color: #FFF;
|
|
border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
right: 0;
|
|
bottom: -30px;
|
|
}
|
|
|
|
/*
|
|
FIXME: Separate the overrides from the rest of the styles, rather than override screen.css entirely.
|
|
*/
|