diff --git a/resources/assets/sass/_blocks.scss b/resources/assets/sass/_blocks.scss index efdefc016..e30eb87e0 100644 --- a/resources/assets/sass/_blocks.scss +++ b/resources/assets/sass/_blocks.scss @@ -14,7 +14,7 @@ content: ''; width: 1.2em; height: 1.2em; - left: $-xs + 1px; + left: $-xs + 2px; top: 50%; margin-top: -9px; display: inline-block; @@ -24,7 +24,7 @@ } &.success { border-left-color: $positive; - background-color: lighten($positive, 45%); + background-color: lighten($positive, 68%); color: darken($positive, 16%); } &.success:before { @@ -32,7 +32,7 @@ } &.danger { border-left-color: $negative; - background-color: lighten($negative, 34%); + background-color: lighten($negative, 56%); color: darken($negative, 20%); } &.danger:before { @@ -41,12 +41,12 @@ &.info { border-left-color: $info; background-color: lighten($info, 50%); - color: darken($info, 16%); + color: darken($info, 20%); } &.warning { border-left-color: $warning; - background-color: lighten($warning, 36%); - color: darken($warning, 16%); + background-color: lighten($warning, 50%); + color: darken($warning, 20%); } &.warning:before { background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIGZpbGw9IiNiNjUzMWMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4gICAgPHBhdGggZD0iTTEgMjFoMjJMMTIgMiAxIDIxem0xMi0zaC0ydi0yaDJ2MnptMC00aC0ydi00aDJ2NHoiLz48L3N2Zz4="); @@ -62,17 +62,6 @@ box-shadow: $bs-card; border-radius: 3px; border: 1px solid transparent; - h3 { - padding: $-m $-m $-xs; - margin: 0; - font-size: $fs-m; - color: #222; - fill: #222; - font-weight: 400; - } - h3 a { - line-height: 1; - } .body, p.empty-text { padding: $-m; } @@ -82,6 +71,18 @@ } } +.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.drag-card { border: 1px solid #DDD; border-radius: 4px; diff --git a/resources/assets/sass/_components.scss b/resources/assets/sass/_components.scss index 33bc5e71d..039ac4dc8 100644 --- a/resources/assets/sass/_components.scss +++ b/resources/assets/sass/_components.scss @@ -3,11 +3,12 @@ position: fixed; top: 0; right: 0; - margin: $-xl*2 $-xl; + margin: $-xl; padding: $-m $-l; - background-color: #EEE; - border-radius: 3px; - box-shadow: $bs-card; + background-color: #FFF; + border-radius: 4px; + border-left: 6px solid currentColor; + box-shadow: $bs-large; z-index: 999999; cursor: pointer; max-width: 360px; @@ -15,30 +16,31 @@ transform: translateX(580px); display: grid; grid-template-columns: 42px 1fr; - color: #FFF; + color: #444; + font-weight: 700; span, svg { vertical-align: middle; justify-self: center; align-self: center; } svg { - fill: #EEEEEE; width: 2.8rem; height: 2.8rem; padding-right: $-s; + fill: currentColor; } span { vertical-align: middle; line-height: 1.3; } &.pos { - background-color: $positive; + color: $positive; } &.neg { - background-color: $negative; + color: $negative; } &.warning { - background-color: $secondary; + color: $warning; } &.showing { transform: translateX(0); diff --git a/resources/assets/sass/_forms.scss b/resources/assets/sass/_forms.scss index 48f4a902e..a177129ef 100644 --- a/resources/assets/sass/_forms.scss +++ b/resources/assets/sass/_forms.scss @@ -370,6 +370,8 @@ div[editor-type="markdown"] .title-input.page-title input[type="text"] { } } + .image-picker img { background-color: #BBB; + max-width: 100%; } diff --git a/resources/assets/sass/_pages.scss b/resources/assets/sass/_pages.scss index e3b1deb5b..d02f59e37 100755 --- a/resources/assets/sass/_pages.scss +++ b/resources/assets/sass/_pages.scss @@ -8,7 +8,7 @@ .edit-area { flex: 1; flex-direction: column; - z-index: 1; + z-index: 10; } .mce-tinymce { @@ -24,7 +24,7 @@ .page-edit-toolbar { overflow-x: scroll; overflow-y: visible; - z-index: 4; + z-index: 12; } .page-edit-toolbar .grid.third { display: block; @@ -80,7 +80,7 @@ } img.align-left, table.align-left { float: left !important; - margin: $-xs $-s $-xs 0; + margin: $-xs $-m $-m 0; } .align-right { text-align: right !important; diff --git a/resources/assets/sass/_tinymce.scss b/resources/assets/sass/_tinymce.scss index 2dbf69164..1596feb76 100644 --- a/resources/assets/sass/_tinymce.scss +++ b/resources/assets/sass/_tinymce.scss @@ -57,6 +57,10 @@ line-height: 1.6; } +.page-content.mce-content-body { + padding-top: 16px; +} + // Fix to prevent 'No color' option from not being clickable. .mce-colorbtn-trans { overflow: hidden; diff --git a/resources/assets/sass/_variables.scss b/resources/assets/sass/_variables.scss index 25b8e09b7..041b70edf 100644 --- a/resources/assets/sass/_variables.scss +++ b/resources/assets/sass/_variables.scss @@ -43,9 +43,9 @@ $fs-s: 12px; // Colours $primary: #0288D1; $primary-dark: #0288D1; -$secondary: #e27b41; -$positive: #52A256; -$negative: #E84F4F; +$secondary: #cf4d03; +$positive: #0f7d15; +$negative: #ab0f0e; $info: $primary; $warning: $secondary; $primary-faded: rgba(21, 101, 192, 0.15); @@ -64,5 +64,6 @@ $text-light: #EEE; // Shadows $bs-light: 0 0 4px 1px #CCC; $bs-med: 0 1px 3px 1px rgba(76, 76, 76, 0.26); +$bs-large: 0 1px 6px 1px rgba(22, 22, 22, 0.2); $bs-card: 0 1px 6px -1px rgba(0, 0, 0, 0.1); $bs-hover: 0 2px 2px 1px rgba(0,0,0,.13); \ No newline at end of file diff --git a/resources/views/common/home.blade.php b/resources/views/common/home.blade.php index 35e45c9c8..2f0189f87 100644 --- a/resources/views/common/home.blade.php +++ b/resources/views/common/home.blade.php @@ -13,7 +13,7 @@
- {{ $emptyText ?? trans('common.no_items') }} -
- @endif -+ {{ $emptyText ?? trans('common.no_items') }} +
+@endif \ No newline at end of file