superdesk-ui-framework 3.0.1-beta.22 → 3.0.1-beta.24

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.
@@ -1,11 +1,11 @@
1
1
  .comment-box__reply-item {
2
- border-bottom: 1px solid rgba(123,123,123,0.2);
2
+ border-bottom: 1px solid var(--sd-colour-line--light);
3
3
  }
4
4
 
5
5
  .comment-box__input {
6
6
  padding: 0.4rem;
7
- border-radius: $border-radius__base--x-small;
8
- border: 1px solid rgba(123,123,123,0.4);
7
+ border-radius: $border-radius__base--small;
8
+ border: 1px solid var(--sd-colour-line--light);
9
9
  height: 2.8rem;
10
10
  resize: none;
11
11
  }
@@ -13,7 +13,10 @@
13
13
  display: none;
14
14
  padding-top: 1rem;
15
15
  &--active {
16
- display: block;
16
+ display: flex;
17
+ justify-content: flex-end;
18
+ align-items: center;
19
+ gap: var(--gap--small);
17
20
  }
18
21
  }
19
22
  .comment-box__button-toolbar {
@@ -22,6 +25,7 @@
22
25
  flex-direction: row;
23
26
  align-items: center;
24
27
  justify-content: flex-start;
28
+ gap: var(--gap--small);
25
29
  &--right {
26
30
  justify-content: flex-end;
27
31
  }
@@ -17,11 +17,11 @@ $editor-popup-padding: 1.6rem;
17
17
 
18
18
  .editor-popup__main {
19
19
  display: flex;
20
- color: $sd-text;
20
+ color: var(--color-text);
21
21
  width: 32rem;
22
22
  max-height: 100%;
23
23
  &.editor-popup__main--floating {
24
- background-color: $white;
24
+ background-color: var(--color-dropdown-menu-Bg);
25
25
  z-index: 2;
26
26
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 3px 1px -2px rgba(0, 0, 0, 0.1);
27
27
  }
@@ -84,6 +84,6 @@ $editor-popup-padding: 1.6rem;
84
84
  }
85
85
 
86
86
  .editor-popup__secondary-content {
87
- background-color: rgba(123,123,123,0.1);
88
- border-top: 1px solid rgba(123,123,123,0.2);
87
+ background-color: hsla(214, 13%, 48%, 0.05);
88
+ border-top: 1px solid var(--sd-colour-line--light);
89
89
  }