mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
de2756dd95
- Also updated to be underlined instead of bold
278 lines
6.8 KiB
SCSS
278 lines
6.8 KiB
SCSS
|
|
/**
|
|
* Callouts
|
|
*/
|
|
.callout {
|
|
border-inline-start: 3px solid #BBB;
|
|
background-color: #EEE;
|
|
padding: $-s $-s $-s $-xl;
|
|
display: block;
|
|
position: relative;
|
|
overflow: auto;
|
|
&:before {
|
|
background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiMwMTUzODAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZD0iTTEyIDJDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bTEgMTVoLTJ2LTZoMnY2em0wLThoLTJWN2gydjJ6Ii8+PC9zdmc+');
|
|
background-repeat: no-repeat;
|
|
content: '';
|
|
width: 1.2em;
|
|
height: 1.2em;
|
|
left: $-xs + 2px;
|
|
top: 50%;
|
|
margin-top: -9px;
|
|
display: inline-block;
|
|
position: absolute;
|
|
line-height: 1;
|
|
opacity: 0.8;
|
|
}
|
|
&.success {
|
|
border-left-color: $positive;
|
|
@include lightDark(background-color, lighten($positive, 68%), darken($positive, 22%));
|
|
@include lightDark(color, darken($positive, 16%), lighten($positive, 5%));
|
|
}
|
|
&.success:before {
|
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiMzNzZjMzkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZD0iTTEyIDJDNi40OCAyIDIgNi40OCAyIDEyczQuNDggMTAgMTAgMTAgMTAtNC40OCAxMC0xMFMxNy41MiAyIDEyIDJ6bS0yIDE1bC01LTUgMS40MS0xLjQxTDEwIDE0LjE3bDcuNTktNy41OUwxOSA4bC05IDl6Ii8+PC9zdmc+");
|
|
}
|
|
&.danger {
|
|
border-left-color: $negative;
|
|
@include lightDark(background-color, lighten($negative, 56%), darken($negative, 30%));
|
|
@include lightDark(color, darken($negative, 20%), lighten($negative, 5%));
|
|
}
|
|
&.danger:before {
|
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNiOTE4MTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0xNS43MyAzSDguMjdMMyA4LjI3djcuNDZMOC4yNyAyMWg3LjQ2TDIxIDE1LjczVjguMjdMMTUuNzMgM3pNMTIgMTcuM2MtLjcyIDAtMS4zLS41OC0xLjMtMS4zIDAtLjcyLjU4LTEuMyAxLjMtMS4zLjcyIDAgMS4zLjU4IDEuMyAxLjMgMCAuNzItLjU4IDEuMy0xLjMgMS4zem0xLTQuM2gtMlY3aDJ2NnoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==");
|
|
}
|
|
&.info {
|
|
border-left-color: $info;
|
|
@include lightDark(color, darken($info, 20%), lighten($info, 10%));
|
|
@include lightDark(background-color, lighten($info, 50%), darken($info, 35%));
|
|
}
|
|
&.warning {
|
|
border-left-color: $warning;
|
|
@include lightDark(background-color, lighten($warning, 50%), darken($warning, 36%));
|
|
@include lightDark(color, darken($warning, 20%), $warning);
|
|
}
|
|
&.warning:before {
|
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNiNjUzMWMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZD0iTTEgMjFoMjJMMTIgMiAxIDIxem0xMi0zaC0ydi0yaDJ2MnptMC00aC0ydi00aDJ2NHoiLz48L3N2Zz4=");
|
|
}
|
|
a {
|
|
color: inherit;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Card-style blocks
|
|
*/
|
|
|
|
.card {
|
|
@include lightDark(background-color, #FFF, #222);
|
|
box-shadow: $bs-card;
|
|
border-radius: 3px;
|
|
border: 1px solid transparent;
|
|
.body, p.empty-text {
|
|
padding: $-m;
|
|
}
|
|
a, p {
|
|
word-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
|
|
.card-title {
|
|
padding: $-m $-m $-xs;
|
|
margin: 0;
|
|
font-size: $fs-m;
|
|
color: #222;
|
|
fill: #222;
|
|
font-weight: 400;
|
|
}
|
|
.card-title a {
|
|
line-height: 1;
|
|
}
|
|
|
|
.card.border-card {
|
|
border: 1px solid #DDD;
|
|
}
|
|
|
|
.card.drag-card {
|
|
border: 1px solid #DDD;
|
|
@include lightDark(border-color, #ddd, #000);
|
|
@include lightDark(background-color, #fff, #333);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
padding: 0 0 0 ($-s + 28px);
|
|
margin: $-s 0;
|
|
position: relative;
|
|
.drag-card-action {
|
|
cursor: pointer;
|
|
}
|
|
.handle, .drag-card-action {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
flex-grow: 0;
|
|
padding: 0 $-xs;
|
|
&:hover {
|
|
background-color: #EEE;
|
|
}
|
|
.svg-icon {
|
|
margin-inline-end: 0px;
|
|
}
|
|
}
|
|
.outline input {
|
|
margin: $-s 0;
|
|
width: 100%;
|
|
}
|
|
.outline {
|
|
position: relative;
|
|
}
|
|
.handle {
|
|
@include lightDark(background-color, #eee, #2d2d2d);
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
> div {
|
|
padding: 0 $-s;
|
|
max-width: 80%;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.grid-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid #ddd;
|
|
@include lightDark(border-color, #ddd, #000);
|
|
margin-bottom: $-l;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
min-width: 100px;
|
|
color: $text-dark;
|
|
transition: border-color ease-in-out 120ms, box-shadow ease-in-out 120ms;
|
|
&:hover {
|
|
color: $text-dark;
|
|
text-decoration: none;
|
|
@include lightDark(box-shadow, $bs-card, $bs-card-dark);
|
|
}
|
|
h2 {
|
|
width: 100%;
|
|
font-size: 1.5em;
|
|
margin: 0 0 10px;
|
|
}
|
|
p {
|
|
font-size: .7rem;
|
|
margin: 0;
|
|
line-height: 1.6em;
|
|
}
|
|
.grid-card-content {
|
|
flex: 1;
|
|
border-top: 0;
|
|
border-bottom-width: 2px;
|
|
}
|
|
.grid-card-content, .grid-card-footer {
|
|
padding: $-l;
|
|
}
|
|
.grid-card-content + .grid-card-footer {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.book-grid-item .grid-card-footer {
|
|
p.small {
|
|
font-size: .8em;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.content-wrap.card {
|
|
padding: $-m $-xxl;
|
|
margin-inline-start: auto;
|
|
margin-inline-end: auto;
|
|
margin-bottom: $-xl;
|
|
overflow: initial;
|
|
min-height: 60vh;
|
|
&.auto-height {
|
|
min-height: 0;
|
|
}
|
|
&.fill-width {
|
|
width: 100%;
|
|
}
|
|
}
|
|
@include smaller-than($xxl) {
|
|
.content-wrap.card {
|
|
padding: $-m $-xl;
|
|
}
|
|
}
|
|
@include smaller-than($m) {
|
|
.content-wrap.card {
|
|
padding: $-m $-l;
|
|
}
|
|
}
|
|
@include smaller-than($s) {
|
|
.content-wrap.card {
|
|
padding: $-m $-m;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Tags
|
|
*/
|
|
.tag-item {
|
|
display: inline-flex;
|
|
margin-bottom: $-xs;
|
|
margin-inline-end: $-xs;
|
|
border-radius: 4px;
|
|
border: 1px solid #CCC;
|
|
overflow: hidden;
|
|
font-size: 0.85em;
|
|
a, a:hover, a:active {
|
|
padding: 4px 8px;
|
|
@include lightDark(color, #777, #999);
|
|
transition: background-color ease-in-out 80ms;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
@include lightDark(background-color, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
|
|
}
|
|
svg {
|
|
fill: #888;
|
|
}
|
|
.tag-value {
|
|
border-inline-start: 1px solid #DDD;
|
|
@include lightDark(background-color, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2))
|
|
}
|
|
}
|
|
|
|
.tag-list div:last-child .tag-item {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/**
|
|
* API Docs
|
|
*/
|
|
.api-method {
|
|
font-size: 0.75rem;
|
|
background-color: #888;
|
|
padding: $-xs;
|
|
line-height: 1.3;
|
|
opacity: 0.7;
|
|
vertical-align: top;
|
|
border-radius: 3px;
|
|
color: #FFF;
|
|
display: inline-block;
|
|
min-width: 60px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
&[data-method="GET"] { background-color: #077b70 }
|
|
&[data-method="POST"] { background-color: #cf4d03 }
|
|
&[data-method="PUT"] { background-color: #0288D1 }
|
|
&[data-method="DELETE"] { background-color: #ab0f0e }
|
|
}
|
|
|
|
.sticky-sidebar {
|
|
position: sticky;
|
|
top: $-m;
|
|
}
|