slu-design-system 5.0.26 → 5.0.28

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,64 @@
1
+ trigger:
2
+ branches:
3
+ include:
4
+ - master
5
+ paths:
6
+ include:
7
+ - designsystem/**
8
+
9
+ pool:
10
+ name: Default
11
+ demands: npm
12
+
13
+ steps:
14
+ - task: Npm@1
15
+ displayName: "npm install"
16
+ inputs:
17
+ workingDir: designsystem
18
+ verbose: false
19
+ - task: Npm@1
20
+ displayName: "build "
21
+ inputs:
22
+ command: custom
23
+ workingDir: designsystem
24
+ verbose: false
25
+ customCommand: "run build-prod"
26
+ - task: CopyFiles@2
27
+ displayName: "Copy Files"
28
+ inputs:
29
+ SourceFolder: designsystem
30
+ Contents: |
31
+ **
32
+ !**\fonts\**
33
+ !**\src\**
34
+ !**\node_modules\**
35
+ !**\package-lock.json
36
+ !**\test.html
37
+ TargetFolder: "$(build.artifactstagingdirectory)"
38
+ CleanTargetFolder: true
39
+ - task: CopyFiles@2
40
+ displayName: "Copy fonts"
41
+ inputs:
42
+ SourceFolder: designsystem
43
+ Contents: 'fonts\**'
44
+ TargetFolder: "$(build.artifactstagingdirectory)/dist"
45
+ - task: CopyFiles@2
46
+ displayName: "Copy scss utils"
47
+ inputs:
48
+ SourceFolder: designsystem
49
+ Contents: 'scss\**'
50
+ TargetFolder: "$(build.artifactstagingdirectory)"
51
+ enabled: false
52
+ - task: CopyFiles@2
53
+ displayName: "Copy scss files to utils"
54
+ inputs:
55
+ SourceFolder: 'designsystem\src\abstract'
56
+ Contents: |
57
+ _adb-variables.scss
58
+ _artportalen-variables.scss
59
+ TargetFolder: "$(build.artifactstagingdirectory)/scss"
60
+ - task: PublishBuildArtifacts@1
61
+ displayName: "Publish Artifact: drop"
62
+ inputs:
63
+ PathtoPublish: "$(build.artifactstagingdirectory)"
64
+
@@ -11643,11 +11643,6 @@ pre {
11643
11643
  display: block;
11644
11644
  }
11645
11645
 
11646
- .comma-seperated > *:not(:last-child):after,
11647
- .comma-separated > *:not(:last-child):after {
11648
- content: ", ";
11649
- }
11650
-
11651
11646
  .table th a {
11652
11647
  color: #333333;
11653
11648
  }
@@ -11732,477 +11727,6 @@ pre {
11732
11727
  border: 1px solid #fae79c !important;
11733
11728
  }
11734
11729
 
11735
- .progress-circle {
11736
- font-size: 20px;
11737
- margin: 20px;
11738
- position: relative;
11739
- padding: 0;
11740
- width: 5em;
11741
- height: 5em;
11742
- background-color: #f2e9e1;
11743
- border-radius: 50%;
11744
- line-height: 5em;
11745
- }
11746
-
11747
- .progress-circle:after {
11748
- border: none;
11749
- position: absolute;
11750
- top: 0.35em;
11751
- left: 0.35em;
11752
- text-align: center;
11753
- display: block;
11754
- border-radius: 50%;
11755
- width: 4.3em;
11756
- height: 4.3em;
11757
- background-color: white;
11758
- content: " ";
11759
- }
11760
-
11761
- .progress-circle span {
11762
- position: absolute;
11763
- line-height: 5em;
11764
- width: 5em;
11765
- text-align: center;
11766
- display: block;
11767
- color: #4E6936;
11768
- z-index: 2;
11769
- }
11770
-
11771
- .left-half-clipper {
11772
- border-radius: 50%;
11773
- width: 5em;
11774
- height: 5em;
11775
- position: absolute;
11776
- clip: rect(0, 5em, 5em, 2.5em);
11777
- }
11778
-
11779
- .progress-circle.over50 .left-half-clipper {
11780
- clip: rect(auto, auto, auto, auto);
11781
- }
11782
-
11783
- .value-bar {
11784
- position: absolute;
11785
- clip: rect(0, 2.5em, 5em, 0);
11786
- width: 5em;
11787
- height: 5em;
11788
- border-radius: 50%;
11789
- border: 0.45em solid #4E6936;
11790
- box-sizing: border-box;
11791
- }
11792
-
11793
- .progress-circle.over50 .first50-bar {
11794
- position: absolute;
11795
- clip: rect(0, 5em, 5em, 2.5em);
11796
- background-color: #4E6936;
11797
- border-radius: 50%;
11798
- width: 5em;
11799
- height: 5em;
11800
- }
11801
-
11802
- .progress-circle:not(.over50) .first50-bar {
11803
- display: none;
11804
- }
11805
-
11806
- .progress-circle.p0 .value-bar {
11807
- display: none;
11808
- }
11809
-
11810
- .progress-circle.p1 .value-bar {
11811
- transform: rotate(3.6deg);
11812
- }
11813
-
11814
- .progress-circle.p2 .value-bar {
11815
- transform: rotate(7.2deg);
11816
- }
11817
-
11818
- .progress-circle.p3 .value-bar {
11819
- transform: rotate(10.8deg);
11820
- }
11821
-
11822
- .progress-circle.p4 .value-bar {
11823
- transform: rotate(14.4deg);
11824
- }
11825
-
11826
- .progress-circle.p5 .value-bar {
11827
- transform: rotate(18deg);
11828
- }
11829
-
11830
- .progress-circle.p6 .value-bar {
11831
- transform: rotate(21.6deg);
11832
- }
11833
-
11834
- .progress-circle.p7 .value-bar {
11835
- transform: rotate(25.2deg);
11836
- }
11837
-
11838
- .progress-circle.p8 .value-bar {
11839
- transform: rotate(28.8deg);
11840
- }
11841
-
11842
- .progress-circle.p9 .value-bar {
11843
- transform: rotate(32.4deg);
11844
- }
11845
-
11846
- .progress-circle.p10 .value-bar {
11847
- transform: rotate(36deg);
11848
- }
11849
-
11850
- .progress-circle.p11 .value-bar {
11851
- transform: rotate(39.6deg);
11852
- }
11853
-
11854
- .progress-circle.p12 .value-bar {
11855
- transform: rotate(43.2deg);
11856
- }
11857
-
11858
- .progress-circle.p13 .value-bar {
11859
- transform: rotate(46.8deg);
11860
- }
11861
-
11862
- .progress-circle.p14 .value-bar {
11863
- transform: rotate(50.4deg);
11864
- }
11865
-
11866
- .progress-circle.p15 .value-bar {
11867
- transform: rotate(54deg);
11868
- }
11869
-
11870
- .progress-circle.p16 .value-bar {
11871
- transform: rotate(57.6deg);
11872
- }
11873
-
11874
- .progress-circle.p17 .value-bar {
11875
- transform: rotate(61.2deg);
11876
- }
11877
-
11878
- .progress-circle.p18 .value-bar {
11879
- transform: rotate(64.8deg);
11880
- }
11881
-
11882
- .progress-circle.p19 .value-bar {
11883
- transform: rotate(68.4deg);
11884
- }
11885
-
11886
- .progress-circle.p20 .value-bar {
11887
- transform: rotate(72deg);
11888
- }
11889
-
11890
- .progress-circle.p21 .value-bar {
11891
- transform: rotate(75.6deg);
11892
- }
11893
-
11894
- .progress-circle.p22 .value-bar {
11895
- transform: rotate(79.2deg);
11896
- }
11897
-
11898
- .progress-circle.p23 .value-bar {
11899
- transform: rotate(82.8deg);
11900
- }
11901
-
11902
- .progress-circle.p24 .value-bar {
11903
- transform: rotate(86.4deg);
11904
- }
11905
-
11906
- .progress-circle.p25 .value-bar {
11907
- transform: rotate(90deg);
11908
- }
11909
-
11910
- .progress-circle.p26 .value-bar {
11911
- transform: rotate(93.6deg);
11912
- }
11913
-
11914
- .progress-circle.p27 .value-bar {
11915
- transform: rotate(97.2deg);
11916
- }
11917
-
11918
- .progress-circle.p28 .value-bar {
11919
- transform: rotate(100.8deg);
11920
- }
11921
-
11922
- .progress-circle.p29 .value-bar {
11923
- transform: rotate(104.4deg);
11924
- }
11925
-
11926
- .progress-circle.p30 .value-bar {
11927
- transform: rotate(108deg);
11928
- }
11929
-
11930
- .progress-circle.p31 .value-bar {
11931
- transform: rotate(111.6deg);
11932
- }
11933
-
11934
- .progress-circle.p32 .value-bar {
11935
- transform: rotate(115.2deg);
11936
- }
11937
-
11938
- .progress-circle.p33 .value-bar {
11939
- transform: rotate(118.8deg);
11940
- }
11941
-
11942
- .progress-circle.p34 .value-bar {
11943
- transform: rotate(122.4deg);
11944
- }
11945
-
11946
- .progress-circle.p35 .value-bar {
11947
- transform: rotate(126deg);
11948
- }
11949
-
11950
- .progress-circle.p36 .value-bar {
11951
- transform: rotate(129.6deg);
11952
- }
11953
-
11954
- .progress-circle.p37 .value-bar {
11955
- transform: rotate(133.2deg);
11956
- }
11957
-
11958
- .progress-circle.p38 .value-bar {
11959
- transform: rotate(136.8deg);
11960
- }
11961
-
11962
- .progress-circle.p39 .value-bar {
11963
- transform: rotate(140.4deg);
11964
- }
11965
-
11966
- .progress-circle.p40 .value-bar {
11967
- transform: rotate(144deg);
11968
- }
11969
-
11970
- .progress-circle.p41 .value-bar {
11971
- transform: rotate(147.6deg);
11972
- }
11973
-
11974
- .progress-circle.p42 .value-bar {
11975
- transform: rotate(151.2deg);
11976
- }
11977
-
11978
- .progress-circle.p43 .value-bar {
11979
- transform: rotate(154.8deg);
11980
- }
11981
-
11982
- .progress-circle.p44 .value-bar {
11983
- transform: rotate(158.4deg);
11984
- }
11985
-
11986
- .progress-circle.p45 .value-bar {
11987
- transform: rotate(162deg);
11988
- }
11989
-
11990
- .progress-circle.p46 .value-bar {
11991
- transform: rotate(165.6deg);
11992
- }
11993
-
11994
- .progress-circle.p47 .value-bar {
11995
- transform: rotate(169.2deg);
11996
- }
11997
-
11998
- .progress-circle.p48 .value-bar {
11999
- transform: rotate(172.8deg);
12000
- }
12001
-
12002
- .progress-circle.p49 .value-bar {
12003
- transform: rotate(176.4deg);
12004
- }
12005
-
12006
- .progress-circle.p50 .value-bar {
12007
- transform: rotate(180deg);
12008
- }
12009
-
12010
- .progress-circle.p51 .value-bar {
12011
- transform: rotate(183.6deg);
12012
- }
12013
-
12014
- .progress-circle.p52 .value-bar {
12015
- transform: rotate(187.2deg);
12016
- }
12017
-
12018
- .progress-circle.p53 .value-bar {
12019
- transform: rotate(190.8deg);
12020
- }
12021
-
12022
- .progress-circle.p54 .value-bar {
12023
- transform: rotate(194.4deg);
12024
- }
12025
-
12026
- .progress-circle.p55 .value-bar {
12027
- transform: rotate(198deg);
12028
- }
12029
-
12030
- .progress-circle.p56 .value-bar {
12031
- transform: rotate(201.6deg);
12032
- }
12033
-
12034
- .progress-circle.p57 .value-bar {
12035
- transform: rotate(205.2deg);
12036
- }
12037
-
12038
- .progress-circle.p58 .value-bar {
12039
- transform: rotate(208.8deg);
12040
- }
12041
-
12042
- .progress-circle.p59 .value-bar {
12043
- transform: rotate(212.4deg);
12044
- }
12045
-
12046
- .progress-circle.p60 .value-bar {
12047
- transform: rotate(216deg);
12048
- }
12049
-
12050
- .progress-circle.p61 .value-bar {
12051
- transform: rotate(219.6deg);
12052
- }
12053
-
12054
- .progress-circle.p62 .value-bar {
12055
- transform: rotate(223.2deg);
12056
- }
12057
-
12058
- .progress-circle.p63 .value-bar {
12059
- transform: rotate(226.8deg);
12060
- }
12061
-
12062
- .progress-circle.p64 .value-bar {
12063
- transform: rotate(230.4deg);
12064
- }
12065
-
12066
- .progress-circle.p65 .value-bar {
12067
- transform: rotate(234deg);
12068
- }
12069
-
12070
- .progress-circle.p66 .value-bar {
12071
- transform: rotate(237.6deg);
12072
- }
12073
-
12074
- .progress-circle.p67 .value-bar {
12075
- transform: rotate(241.2deg);
12076
- }
12077
-
12078
- .progress-circle.p68 .value-bar {
12079
- transform: rotate(244.8deg);
12080
- }
12081
-
12082
- .progress-circle.p69 .value-bar {
12083
- transform: rotate(248.4deg);
12084
- }
12085
-
12086
- .progress-circle.p70 .value-bar {
12087
- transform: rotate(252deg);
12088
- }
12089
-
12090
- .progress-circle.p71 .value-bar {
12091
- transform: rotate(255.6deg);
12092
- }
12093
-
12094
- .progress-circle.p72 .value-bar {
12095
- transform: rotate(259.2deg);
12096
- }
12097
-
12098
- .progress-circle.p73 .value-bar {
12099
- transform: rotate(262.8deg);
12100
- }
12101
-
12102
- .progress-circle.p74 .value-bar {
12103
- transform: rotate(266.4deg);
12104
- }
12105
-
12106
- .progress-circle.p75 .value-bar {
12107
- transform: rotate(270deg);
12108
- }
12109
-
12110
- .progress-circle.p76 .value-bar {
12111
- transform: rotate(273.6deg);
12112
- }
12113
-
12114
- .progress-circle.p77 .value-bar {
12115
- transform: rotate(277.2deg);
12116
- }
12117
-
12118
- .progress-circle.p78 .value-bar {
12119
- transform: rotate(280.8deg);
12120
- }
12121
-
12122
- .progress-circle.p79 .value-bar {
12123
- transform: rotate(284.4deg);
12124
- }
12125
-
12126
- .progress-circle.p80 .value-bar {
12127
- transform: rotate(288deg);
12128
- }
12129
-
12130
- .progress-circle.p81 .value-bar {
12131
- transform: rotate(291.6deg);
12132
- }
12133
-
12134
- .progress-circle.p82 .value-bar {
12135
- transform: rotate(295.2deg);
12136
- }
12137
-
12138
- .progress-circle.p83 .value-bar {
12139
- transform: rotate(298.8deg);
12140
- }
12141
-
12142
- .progress-circle.p84 .value-bar {
12143
- transform: rotate(302.4deg);
12144
- }
12145
-
12146
- .progress-circle.p85 .value-bar {
12147
- transform: rotate(306deg);
12148
- }
12149
-
12150
- .progress-circle.p86 .value-bar {
12151
- transform: rotate(309.6deg);
12152
- }
12153
-
12154
- .progress-circle.p87 .value-bar {
12155
- transform: rotate(313.2deg);
12156
- }
12157
-
12158
- .progress-circle.p88 .value-bar {
12159
- transform: rotate(316.8deg);
12160
- }
12161
-
12162
- .progress-circle.p89 .value-bar {
12163
- transform: rotate(320.4deg);
12164
- }
12165
-
12166
- .progress-circle.p90 .value-bar {
12167
- transform: rotate(324deg);
12168
- }
12169
-
12170
- .progress-circle.p91 .value-bar {
12171
- transform: rotate(327.6deg);
12172
- }
12173
-
12174
- .progress-circle.p92 .value-bar {
12175
- transform: rotate(331.2deg);
12176
- }
12177
-
12178
- .progress-circle.p93 .value-bar {
12179
- transform: rotate(334.8deg);
12180
- }
12181
-
12182
- .progress-circle.p94 .value-bar {
12183
- transform: rotate(338.4deg);
12184
- }
12185
-
12186
- .progress-circle.p95 .value-bar {
12187
- transform: rotate(342deg);
12188
- }
12189
-
12190
- .progress-circle.p96 .value-bar {
12191
- transform: rotate(345.6deg);
12192
- }
12193
-
12194
- .progress-circle.p97 .value-bar {
12195
- transform: rotate(349.2deg);
12196
- }
12197
-
12198
- .progress-circle.p98 .value-bar {
12199
- transform: rotate(352.8deg);
12200
- }
12201
-
12202
- .progress-circle.p99 .value-bar {
12203
- transform: rotate(356.4deg);
12204
- }
12205
-
12206
11730
  suggestive-search {
12207
11731
  background-color: white;
12208
11732
  }
@@ -12412,7 +11936,7 @@ h5,
12412
11936
  font-size: 1rem;
12413
11937
  }
12414
11938
 
12415
- .h-subcaption, .h5 {
11939
+ .h-subcaption, h5, .h5 {
12416
11940
  font-size: 1rem;
12417
11941
  font-weight: normal;
12418
11942
  }
@@ -12974,6 +12498,11 @@ a:focus figure.image-text-below {
12974
12498
  background-color: #f6f7f9;
12975
12499
  }
12976
12500
 
12501
+ .comma-seperated > *:not(:last-child):after,
12502
+ .comma-separated > *:not(:last-child):after {
12503
+ content: ", ";
12504
+ }
12505
+
12977
12506
  adb-date-picker > div {
12978
12507
  z-index: 900;
12979
12508
  }