diff options
Diffstat (limited to 'assets/default')
-rw-r--r-- | assets/default/scss/shaarli.scss | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/assets/default/scss/shaarli.scss b/assets/default/scss/shaarli.scss index 425a0490..6a8a8bc7 100644 --- a/assets/default/scss/shaarli.scss +++ b/assets/default/scss/shaarli.scss | |||
@@ -146,6 +146,13 @@ body, | |||
146 | background-color: $main-green; | 146 | background-color: $main-green; |
147 | } | 147 | } |
148 | 148 | ||
149 | .pure-alert-warning { | ||
150 | a { | ||
151 | color: $warning-text; | ||
152 | font-weight: bold; | ||
153 | } | ||
154 | } | ||
155 | |||
149 | .page-single-alert { | 156 | .page-single-alert { |
150 | margin-top: 100px; | 157 | margin-top: 100px; |
151 | } | 158 | } |
@@ -1547,3 +1554,40 @@ form { | |||
1547 | .pure-button-shaarli { | 1554 | .pure-button-shaarli { |
1548 | background-color: $main-green; | 1555 | background-color: $main-green; |
1549 | } | 1556 | } |
1557 | |||
1558 | .progressbar { | ||
1559 | border-radius: 6px; | ||
1560 | background-color: $main-green; | ||
1561 | padding: 1px; | ||
1562 | |||
1563 | > div { | ||
1564 | border-radius: 10px; | ||
1565 | background: repeating-linear-gradient( | ||
1566 | -45deg, | ||
1567 | $almost-white, | ||
1568 | $almost-white 6px, | ||
1569 | $background-color 6px, | ||
1570 | $background-color 12px | ||
1571 | ); | ||
1572 | width: 0%; | ||
1573 | height: 10px; | ||
1574 | } | ||
1575 | } | ||
1576 | |||
1577 | .thumbnails-page-container { | ||
1578 | .progress-counter { | ||
1579 | padding: 10px 0 20px; | ||
1580 | } | ||
1581 | |||
1582 | .thumbnail-placeholder { | ||
1583 | margin: 10px auto; | ||
1584 | background-color: $light-grey; | ||
1585 | } | ||
1586 | |||
1587 | .thumbnail-link-title { | ||
1588 | padding-bottom: 20px; | ||
1589 | overflow: hidden; | ||
1590 | text-overflow: ellipsis; | ||
1591 | white-space: nowrap; | ||
1592 | } | ||
1593 | } | ||