@lightspeed/design-system-css 1.1.2 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lightspeed/design-system-css
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#4901](https://github.com/vend/monocle/pull/4901) [`86a6a576a`](https://github.com/vend/monocle/commit/86a6a576a63c1a82dd3710004bb962dd520b82cd) Thanks [@rothlis](https://github.com/rothlis)! - Add new sidebar styles under feature flag
8
+
3
9
  ## 1.1.2
4
10
 
5
11
  ### Patch Changes
package/dist/index.css CHANGED
@@ -417,6 +417,29 @@ a, button, input, textarea, select, details, [ng-click], .vd-fast-tap {
417
417
  animation-fill-mode: forwards;
418
418
  }
419
419
 
420
+ @keyframes vd-blink-highlight {
421
+ 20%, 70% {
422
+ background-color: var(--vd-colour--go-highlight);
423
+ }
424
+ }
425
+ @keyframes vd-shake {
426
+ 10%, 90% {
427
+ transform: translate3d(-1px, 0, 0);
428
+ }
429
+ 20%, 80% {
430
+ transform: translate3d(2px, 0, 0);
431
+ }
432
+ 30%, 50%, 70% {
433
+ transform: translate3d(-4px, 0, 0);
434
+ }
435
+ 40%, 60% {
436
+ transform: translate3d(4px, 0, 0);
437
+ }
438
+ }
439
+ .vd-shake-highlight {
440
+ animation: vd-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both, vd-blink-highlight 1.2s;
441
+ }
442
+
420
443
  #vd-viewport-identifier {
421
444
  position: absolute;
422
445
  z-index: -1;
@@ -4096,6 +4119,20 @@ vd-dott, .vd-dott {
4096
4119
  z-index: 410;
4097
4120
  }
4098
4121
 
4122
+ .vd-nav-divider {
4123
+ display: flex;
4124
+ align-items: center;
4125
+ justify-content: center;
4126
+ height: 25px;
4127
+ }
4128
+ .vd-nav-divider::before {
4129
+ content: "";
4130
+ display: block;
4131
+ height: 1px;
4132
+ width: 20px;
4133
+ background-color: var(--vd-colour--keyline);
4134
+ }
4135
+
4099
4136
  .vd-nav-item {
4100
4137
  box-sizing: border-box;
4101
4138
  height: 100%;
@@ -5064,6 +5101,10 @@ vd-section vd-section, vd-section .vd-section, .vd-section vd-section, .vd-secti
5064
5101
  margin-left: 0;
5065
5102
  }
5066
5103
 
5104
+ .vd-sidebar:empty {
5105
+ display: none;
5106
+ }
5107
+
5067
5108
  .vd-sidebar {
5068
5109
  display: flex;
5069
5110
  position: relative;
@@ -5072,29 +5113,116 @@ vd-section vd-section, vd-section .vd-section, .vd-section vd-section, .vd-secti
5072
5113
  box-sizing: border-box;
5073
5114
  font-family: lato, "Helvetica Neue", helvetica, roboto, arial, sans-serif;
5074
5115
  line-height: normal;
5116
+ max-width: 240px;
5117
+ transform: translateX(0);
5118
+ transition: transform 0.2s ease-in-out;
5119
+ z-index: 200;
5120
+ }
5121
+ .vd-sidebar .vd-sidebar-modal-close {
5122
+ display: none;
5123
+ top: 10px;
5124
+ right: -60px;
5125
+ }
5126
+ .vd-sidebar .vd-sidebar-tabs {
5127
+ height: auto;
5128
+ }
5129
+ .vd-sidebar .vd-sidebar-drawer {
5130
+ height: auto;
5131
+ }
5132
+ @media print {
5133
+ .vd-sidebar {
5134
+ display: none;
5135
+ }
5136
+ }
5137
+ @media only screen and (max-width: 1200px) {
5138
+ .vd-sidebar {
5139
+ z-index: 302;
5140
+ }
5141
+ }
5142
+
5143
+ .vd-sidebar-content {
5144
+ background: linear-gradient(to right, var(--vd-colour--nav-side-tabs) 0, var(--vd-colour--nav-side-tabs) 64px, var(--vd-colour--nav-side-drawer) 64px, var(--vd-colour--nav-side-drawer) 176px);
5145
+ width: auto;
5146
+ overflow-y: auto;
5147
+ overflow-x: hidden;
5148
+ height: 100%;
5149
+ display: flex;
5150
+ }
5151
+
5152
+ .vd-sidebar--pad-drawer {
5153
+ padding-right: 176px;
5075
5154
  }
5076
5155
 
5156
+ .nv-display-sidenav-modal .vd-sidebar {
5157
+ z-index: 411;
5158
+ }
5159
+ .nv-display-sidenav-modal .vd-sidebar .vd-sidebar-modal-close {
5160
+ display: flex;
5161
+ }
5162
+
5163
+ @media only screen and (max-width: 1200px) {
5164
+ .vd-sidebar {
5165
+ position: absolute;
5166
+ left: 0;
5167
+ height: 100%;
5168
+ transform: translateX(calc(-100% - 1px));
5169
+ }
5170
+
5171
+ .nv-display-sidenav-modal .vd-sidebar {
5172
+ transform: translateX(0);
5173
+ }
5174
+
5175
+ .vd-sidebar--pad-drawer {
5176
+ padding-right: 0;
5177
+ }
5178
+ }
5179
+ @media only screen and (min-width: 1201px) {
5180
+ .vd-sidebar--no-drawer {
5181
+ width: 64px;
5182
+ }
5183
+
5184
+ .nv-display-sidenav-modal .vd-sidebar--no-drawer .vd-sidebar-content {
5185
+ position: absolute;
5186
+ }
5187
+ .nv-display-sidenav-modal .vd-sidebar--no-drawer .vd-sidebar-modal-close {
5188
+ right: -236px;
5189
+ }
5190
+ }
5077
5191
  .vd-sidebar-drawer {
5078
5192
  display: flex;
5079
5193
  flex-direction: column;
5080
5194
  flex-shrink: 0;
5081
- width: 145px;
5195
+ width: 176px;
5082
5196
  height: 100%;
5083
5197
  background-color: var(--vd-colour--nav-side-drawer);
5084
- border-right: 1px solid var(--vd-colour--framing);
5198
+ border-right: 1px solid var(--vd-colour--background);
5085
5199
  box-sizing: border-box;
5200
+ padding-top: 15px;
5201
+ padding-bottom: 15px;
5086
5202
  }
5087
5203
  .vd-sidebar-drawer .vd-nav-item {
5088
5204
  width: 100%;
5089
5205
  height: auto;
5090
5206
  color: var(--vd-colour--text);
5091
- font-weight: 700;
5207
+ font-weight: 400;
5092
5208
  }
5093
5209
  .vd-sidebar-drawer .vd-nav-item:hover {
5094
5210
  background: var(--vd-colour--go-highlight);
5095
5211
  }
5096
5212
  .vd-sidebar-drawer .vd-nav-item-action {
5097
- padding: 20px 10px;
5213
+ padding: 13px 22px;
5214
+ }
5215
+ .vd-sidebar-drawer .vd-nav-item--active {
5216
+ position: relative;
5217
+ }
5218
+ .vd-sidebar-drawer .vd-nav-item--active::before {
5219
+ content: "";
5220
+ position: absolute;
5221
+ top: 0;
5222
+ bottom: 0;
5223
+ right: 0;
5224
+ width: 4px;
5225
+ background-color: var(--vd-colour--go);
5098
5226
  }
5099
5227
  .vd-sidebar-drawer .vd-nav-item--active .vd-nav-item-action {
5100
5228
  color: var(--vd-colour--go);
@@ -5110,7 +5238,7 @@ vd-section vd-section, vd-section .vd-section, .vd-section vd-section, .vd-secti
5110
5238
  background-color: inherit;
5111
5239
  }
5112
5240
  .vd-sidebar-drawer .vd-nav-item-label {
5113
- font-size: 14px;
5241
+ font-size: 15px;
5114
5242
  }
5115
5243
 
5116
5244
  .vd-sidebar-tabs {
@@ -5119,32 +5247,30 @@ vd-section vd-section, vd-section .vd-section, .vd-section vd-section, .vd-secti
5119
5247
  flex-shrink: 0;
5120
5248
  z-index: 101;
5121
5249
  box-sizing: border-box;
5122
- width: 85px;
5250
+ width: 64px;
5123
5251
  height: 100%;
5124
5252
  background-color: var(--vd-colour--nav-side-tabs);
5125
- font-size: 12px;
5253
+ font-size: 15px;
5126
5254
  color: var(--vd-colour--text);
5255
+ padding-top: 15px;
5256
+ padding-bottom: 15px;
5257
+ transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1);
5258
+ overflow: hidden;
5259
+ }
5260
+ .vd-sidebar-tabs.vd-sidebar-tabs--expanded {
5261
+ width: 240px;
5262
+ }
5263
+ .vd-sidebar-tabs.vd-sidebar-tabs--expanded .vd-nav-item-action {
5264
+ justify-content: start;
5127
5265
  }
5128
5266
  .vd-sidebar-tabs .vd-nav-item {
5129
5267
  flex-shrink: 0;
5130
- height: 75px;
5131
- width: 100%;
5132
- }
5133
- .vd-sidebar-tabs .vd-nav-item .vd-nav-item-icon.vd-nav-item-icon {
5134
- color: inherit;
5268
+ height: 44px;
5269
+ transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1);
5135
5270
  }
5136
5271
  .vd-sidebar-tabs .vd-nav-item:hover {
5137
5272
  background: var(--vd-colour--background);
5138
5273
  }
5139
- .vd-sidebar-tabs .vd-nav-item-action {
5140
- flex-direction: column;
5141
- justify-content: center;
5142
- position: relative;
5143
- }
5144
- .vd-sidebar-tabs .vd-nav-item--active {
5145
- color: var(--vd-colour--do);
5146
- background: var(--vd-colour--box);
5147
- }
5148
5274
  .vd-sidebar-tabs .vd-nav-item--pending {
5149
5275
  background: var(--vd-colour--background);
5150
5276
  }
@@ -5155,71 +5281,109 @@ vd-section vd-section, vd-section .vd-section, .vd-section vd-section, .vd-secti
5155
5281
  .vd-sidebar-tabs .vd-nav-item--disabled:hover {
5156
5282
  background-color: inherit;
5157
5283
  }
5158
- .vd-sidebar-tabs .vd-nav-item-label {
5159
- font-weight: 700;
5284
+ .vd-sidebar-tabs .vd-nav-item--active {
5285
+ color: var(--vd-colour--do);
5286
+ background: var(--vd-colour--box);
5160
5287
  }
5161
- .vd-sidebar-tabs .vd-nav-item-icon {
5162
- font-size: 20px;
5288
+ .vd-sidebar-tabs .vd-nav-item--active.vd-nav-item--no-children {
5289
+ position: relative;
5163
5290
  }
5164
- .vd-sidebar-tabs .vd-nav-item--carnation .vd-nav-item-icon {
5165
- color: #f5765f;
5291
+ .vd-sidebar-tabs .vd-nav-item--active.vd-nav-item--no-children::before {
5292
+ content: "";
5293
+ position: absolute;
5294
+ top: 0;
5295
+ bottom: 0;
5296
+ right: 0;
5297
+ width: 4px;
5298
+ background-color: var(--vd-colour--go);
5166
5299
  }
5167
- .vd-sidebar-tabs .vd-nav-item--carnation.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--carnation.vd-nav-item--pending {
5168
- border-color: #f5765f;
5300
+ .vd-sidebar-tabs .vd-nav-item-action {
5301
+ flex-direction: row;
5302
+ position: relative;
5303
+ justify-content: start;
5169
5304
  }
5170
- .vd-sidebar-tabs .vd-nav-item--ocean-green .vd-nav-item-icon {
5171
- color: #44b773;
5305
+ .vd-sidebar-tabs .vd-nav-item-label {
5306
+ white-space: nowrap;
5172
5307
  }
5173
- .vd-sidebar-tabs .vd-nav-item--ocean-green.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--ocean-green.vd-nav-item--pending {
5174
- border-color: #44b773;
5308
+ .vd-sidebar-tabs .vd-nav-item-icon {
5309
+ flex-shrink: 0;
5310
+ text-align: center;
5311
+ font-size: 20px;
5312
+ min-width: 20px;
5313
+ padding-left: 22px;
5314
+ padding-right: 22px;
5315
+ transition: padding-right 200ms cubic-bezier(0.4, 0, 0.2, 1);
5175
5316
  }
5176
- .vd-sidebar-tabs .vd-nav-item--rajah .vd-nav-item-icon {
5177
- color: #f3c276;
5317
+ .vd-sidebar-tabs .vd-nav-divider {
5318
+ padding-left: 22px;
5319
+ justify-content: flex-start;
5178
5320
  }
5179
- .vd-sidebar-tabs .vd-nav-item--rajah.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--rajah.vd-nav-item--pending {
5180
- border-color: #f3c276;
5321
+
5322
+ /**
5323
+ Temporary overrides for feature flag `sidebar_new`.
5324
+
5325
+ Those overrides bring back the old sidebar styles unless
5326
+ the class `vd-sidebar--new` is set.
5327
+
5328
+ @REMOVEME: When flag `sidebar_new` is fully rolled out
5329
+ */
5330
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs {
5331
+ width: 85px;
5332
+ font-size: 12px;
5333
+ padding-top: 0;
5334
+ padding-bottom: 0;
5181
5335
  }
5182
- .vd-sidebar-tabs .vd-nav-item--shakespeare .vd-nav-item-icon {
5183
- color: #56bad6;
5336
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item {
5337
+ width: 100%;
5338
+ height: 75px;
5184
5339
  }
5185
- .vd-sidebar-tabs .vd-nav-item--shakespeare.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--shakespeare.vd-nav-item--pending {
5186
- border-color: #56bad6;
5340
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item--active::before {
5341
+ content: none;
5187
5342
  }
5188
- .vd-sidebar-tabs .vd-nav-item--downy .vd-nav-item-icon {
5189
- color: #70b8d3;
5343
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item-action {
5344
+ flex-direction: column;
5345
+ justify-content: center;
5346
+ position: relative;
5190
5347
  }
5191
- .vd-sidebar-tabs .vd-nav-item--downy.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--downy.vd-nav-item--pending {
5192
- border-color: #70b8d3;
5348
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item-icon {
5349
+ width: auto;
5350
+ padding-left: 0;
5351
+ padding-right: 0;
5193
5352
  }
5194
- .vd-sidebar-tabs .vd-nav-item--fern .vd-nav-item-icon {
5195
- color: #65b479;
5353
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item-label {
5354
+ font-size: 12px;
5355
+ font-weight: 700;
5196
5356
  }
5197
- .vd-sidebar-tabs .vd-nav-item--fern.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--fern.vd-nav-item--pending {
5198
- border-color: #65b479;
5357
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-divider, .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-sidebar-expander, .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-tabs .vd-nav-item-icon--new {
5358
+ display: none;
5199
5359
  }
5200
- .vd-sidebar-tabs .vd-nav-item--fiord .vd-nav-item-icon {
5201
- color: #4b576e;
5360
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-drawer {
5361
+ width: 155px;
5362
+ padding-top: 0;
5363
+ padding-bottom: 0;
5202
5364
  }
5203
- .vd-sidebar-tabs .vd-nav-item--fiord.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--fiord.vd-nav-item--pending {
5204
- border-color: #4b576e;
5365
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-drawer .vd-nav-item {
5366
+ font-weight: 700;
5205
5367
  }
5206
- .vd-sidebar-tabs .vd-nav-item--rob-roy .vd-nav-item-icon {
5207
- color: #ebc381;
5368
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-drawer .vd-nav-item--active::before {
5369
+ content: none;
5208
5370
  }
5209
- .vd-sidebar-tabs .vd-nav-item--rob-roy.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--rob-roy.vd-nav-item--pending {
5210
- border-color: #ebc381;
5371
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-drawer .vd-nav-item-action {
5372
+ padding: 20px 10px;
5211
5373
  }
5212
- .vd-sidebar-tabs .vd-nav-item--terracotta .vd-nav-item-icon {
5213
- color: #e57d66;
5374
+ .vd-sidebar:not(.vd-sidebar--new) .vd-sidebar-drawer .vd-nav-item-label {
5375
+ font-size: 14px;
5214
5376
  }
5215
- .vd-sidebar-tabs .vd-nav-item--terracotta.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--terracotta.vd-nav-item--pending {
5216
- border-color: #e57d66;
5377
+
5378
+ .nv-topnav-container:not(.vd-sidebar--new) .vd-logo {
5379
+ padding-left: 34px;
5217
5380
  }
5218
- .vd-sidebar-tabs .vd-nav-item--wistera .vd-nav-item-icon {
5219
- color: #965fb0;
5381
+
5382
+ .vd-sidebar.vd-sidebar--new .vd-sidebar-tabs .vd-nav-item-icon:not(.vd-nav-item-icon--new) {
5383
+ display: none;
5220
5384
  }
5221
- .vd-sidebar-tabs .vd-nav-item--wistera.vd-nav-item--active, .vd-sidebar-tabs .vd-nav-item--wistera.vd-nav-item--pending {
5222
- border-color: #965fb0;
5385
+ .vd-sidebar.vd-sidebar--new .vd-sidebar-expander, .vd-sidebar.vd-sidebar--new .vd-nav-item-icon--new {
5386
+ display: block !important;
5223
5387
  }
5224
5388
 
5225
5389
  .vd-splash-fullscreen-container {
@@ -5900,7 +6064,7 @@ table {
5900
6064
  height: 100%;
5901
6065
  }
5902
6066
  .vd-topbar .vd-logo {
5903
- padding-left: 34px;
6067
+ padding-left: 23px;
5904
6068
  }
5905
6069
 
5906
6070
  @media only screen and (max-width: 480px) {
@@ -6882,105 +7046,6 @@ td.vd-hide-print {
6882
7046
  display: none;
6883
7047
  }
6884
7048
  }
6885
- .vd-sidebar:empty {
6886
- display: none;
6887
- }
6888
-
6889
- .nv-sidenav {
6890
- transform: translateX(0);
6891
- transition: transform 0.2s ease-in-out;
6892
- display: block;
6893
- height: calc(100% - 50px);
6894
- z-index: 200;
6895
- }
6896
- .nv-sidenav .nv-sidenav-modal-close {
6897
- display: none;
6898
- top: 10px;
6899
- right: -60px;
6900
- }
6901
- .nv-sidenav .vd-sidebar-tabs {
6902
- box-shadow: none;
6903
- height: auto;
6904
- }
6905
- .nv-sidenav .vd-sidebar-drawer {
6906
- border-right: none;
6907
- height: auto;
6908
- }
6909
- @media print {
6910
- .nv-sidenav {
6911
- display: none;
6912
- }
6913
- }
6914
- @supports (height: min-content) {
6915
- .nv-sidenav .vd-sidebar-tabs,
6916
- .nv-sidenav .vd-sidebar-drawer {
6917
- height: min-content;
6918
- }
6919
- }
6920
- @media only screen and (max-width: 1200px) {
6921
- .nv-sidenav {
6922
- z-index: 302;
6923
- }
6924
- }
6925
-
6926
- .nv-sidenav-content {
6927
- background: linear-gradient(to right, var(--vd-colour--nav-side-tabs) 0, var(--vd-colour--nav-side-tabs) 85px, var(--vd-colour--nav-side-drawer) 85px, var(--vd-colour--nav-side-drawer) 145px);
6928
- width: auto;
6929
- overflow-y: auto;
6930
- overflow-x: hidden;
6931
- height: 100%;
6932
- display: flex;
6933
- box-shadow: 1px 0 0 0 var(--vd-colour--framing);
6934
- }
6935
-
6936
- .nv-sidenav--pad-drawer {
6937
- padding-right: 145px;
6938
- }
6939
-
6940
- .nv-display-sidenav-modal .nv-sidenav {
6941
- z-index: 411;
6942
- }
6943
- .nv-display-sidenav-modal .nv-sidenav .nv-sidenav-modal-close {
6944
- display: flex;
6945
- }
6946
-
6947
- @media only screen and (max-width: 1200px) {
6948
- .nv-sidenav {
6949
- position: absolute;
6950
- left: 0;
6951
- height: 100%;
6952
- transform: translateX(calc(-100% - 1px));
6953
- }
6954
- .nv-sidenav .nv-sidenav-content {
6955
- background: linear-gradient(to right, var(--vd-colour--nav-side-tabs) 0, var(--vd-colour--nav-side-tabs) 85px, var(--vd-colour--nav-side-drawer) 85px, var(--vd-colour--nav-side-drawer) 145px);
6956
- }
6957
- .nv-sidenav .vd-sidebar-tabs {
6958
- width: 85px;
6959
- }
6960
- .nv-sidenav .vd-sidebar-drawer {
6961
- width: 145px;
6962
- }
6963
-
6964
- .nv-display-sidenav-modal .nv-sidenav {
6965
- transform: translateX(0);
6966
- }
6967
-
6968
- .nv-sidenav--pad-drawer {
6969
- padding-right: 0;
6970
- }
6971
- }
6972
- @media only screen and (min-width: 1201px) {
6973
- .nv-sidenav--no-drawer {
6974
- width: 85px;
6975
- }
6976
-
6977
- .nv-display-sidenav-modal .nv-sidenav--no-drawer .nv-sidenav-content {
6978
- position: absolute;
6979
- }
6980
- .nv-display-sidenav-modal .nv-sidenav--no-drawer .nv-sidenav-modal-close {
6981
- right: -205px;
6982
- }
6983
- }
6984
7049
  .nv-account-banner {
6985
7050
  display: block;
6986
7051
  }
@@ -7989,6 +8054,9 @@ td.vd-hide-print {
7989
8054
  .vd-table-list-row {
7990
8055
  border-bottom: 1px solid var(--vd-colour--framing);
7991
8056
  }
8057
+ .vd-table-list-row.vd-table-list-row--active {
8058
+ background-color: var(--vd-colour--go-highlight);
8059
+ }
7992
8060
 
7993
8061
  .vd-table-list-row--expandable:hover {
7994
8062
  cursor: pointer;