slu-design-system 3.0.4 → 3.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,55 @@
1
+ //Colors
2
+ $adb-shadow: rgba(0, 0, 0, 0.5) 0px 1px 3px 0px;
3
+ $adb-shadow-hover: 0px 1px 3px 0px rgba(0, 0, 0, 0.7);
4
+ $adb-nav-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.3),
5
+ inset 0 -45px 35px -15px rgba(0, 0, 0, 0.2);
6
+ $adb-header-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.3),
7
+ inset 0 -45px 35px -15px rgba(0, 0, 0, 0.2);
8
+ $adb-body-color: black;
9
+ $adb-accent-darkblue: #1f4487; //hmmmmmm
10
+ $adb-bgcolor-whiteblue: #f6f7f9;
11
+ $primary: #007681;
12
+ $adb-primary-hover: #005f68;
13
+ $danger: #b83d39;
14
+ $warning: #db7100;
15
+ $success: #52a852;
16
+ $info: #17a2b8;
17
+ $adb-light: #e9ebee;
18
+
19
+ $adb-primary: $primary;
20
+ $adb-body-bg: $adb-light;
21
+
22
+ $adb-spacer-x: 0.5rem;
23
+ $adb-spacer-y: 0.5rem;
24
+
25
+ $p-1: 0.5em;
26
+ $p-2: 1em;
27
+ $p-3: 1.5em;
28
+ $m-1: $p-1;
29
+ $m-2: $p-2;
30
+ $m-3: $p-3;
31
+
32
+ /***panels****/
33
+ $panel-border-color: #dddedf;
34
+
35
+ /* primary plate */
36
+ $plate-primary-shadow: $adb-shadow;
37
+ $plate-primary-bg: white;
38
+ $plate-primary-color: $adb-body-color;
39
+
40
+ //adb-panel
41
+ $adb-panel-main-shadow: $adb-shadow;
42
+ $adb-panel-heading-color: black;
43
+ $adb-panel-lighter-bg: $adb-bgcolor-whiteblue;
44
+ $adb-panel-darker-bg: $adb-bgcolor-whiteblue;
45
+ $adb-panel-heading-bg-hover: #f2f1f1;
46
+
47
+ $adb-panel-list-bg: white;
48
+
49
+ //buttons
50
+ $adb-btn-secondary-bg: white;
51
+ $adb-btn-secondary-hover-bg: #d9d9d9;
52
+ $btn-select-primary-bg: #1d2124;
53
+
54
+ //Images
55
+ $adb-image-hover-shadow: 0px 0px 6px 3px #5bc0de;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slu-design-system",
3
- "version": "3.0.4",
3
+ "version": "3.0.5",
4
4
  "description": "Artdatabanken designsystem",
5
5
  "scripts": {
6
6
  "build": "sass src/designsystem-default.scss dist/designsystem-default.css",
@@ -1,28 +0,0 @@
1
- @mixin media-breakpoint-down($size) {
2
- @if $size == xs {
3
- @media (max-width: 576px) { @content; }
4
- } @else if $size == sm {
5
- @media (max-width: 768px) { @content; }
6
- } @else if $size == md {
7
- @media (max-width: 992px) { @content; }
8
- } @else if $size == lg {
9
- @media (max-width: 1200px) { @content; }
10
- } @else if $size == xxl {
11
- @media (max-width: 1400px) { @content; }
12
- }
13
- }
14
- @mixin media-breakpoint-up($size) {
15
- @if $size == xs {
16
- @media (min-width: 576px) { @content; }
17
- } @else if $size == sm {
18
- @media (min-width: 768px) { @content; }
19
- } @else if $size == md {
20
- @media (min-width: 992px) { @content; }
21
- } @else if $size == lg {
22
- @media (min-width: 1200px) { @content; }
23
- } @else if $size == xxl {
24
- @media (min-width: 1400px) { @content; }
25
- }
26
- }
27
-
28
-