Skip to content

Commit

Permalink
Publisher related fixes (#4287)
Browse files Browse the repository at this point in the history
* [SDESK-6779] and [SDESK-6786]

* Publisher related fixes

* small CSS fix

* package-lock.json fix

* Removed Publisher from config
  • Loading branch information
fritzSF authored Jul 5, 2023
1 parent 36e6a58 commit ce1b736
Show file tree
Hide file tree
Showing 6 changed files with 214 additions and 251 deletions.
202 changes: 101 additions & 101 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
"sass-loader": "6.0.6",
"shortid": "2.2.8",
"style-loader": "0.20.2",
"superdesk-ui-framework": "^3.0.39",
"superdesk-ui-framework": "^3.0.40",
"ts-loader": "3.5.0",
"tslint": "5.11.0",
"typescript": "~4.9.5",
Expand Down
14 changes: 10 additions & 4 deletions scripts/apps/authoring/styles/authoring.scss
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,15 @@ $authoring-toolbar-spacing: 10px;
font-size: 13px;
margin-top: -2px;
text-transform: lowercase;
select {
border: 1px solid var(--color-input-border);
border-radius: var(--b-radius--x-small);
background-color: var(--sd-item__main-Bg);
color: var(--color-text);
height: 20px !important;
font-size: 12px !important;
padding: 0 2px !important;
}
}
}

Expand Down Expand Up @@ -954,11 +963,8 @@ $authoring-toolbar-spacing: 10px;
align-items: center;
padding: 5px;
margin-bottom: 1px;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 0 var(--sd-colour-line--light);
z-index: 1;


background-color: $white;
i.backlink {
flex-grow: 0;
display: inline-flex;
Expand Down
12 changes: 0 additions & 12 deletions styles/sass/layouts.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@ body {
height:100%;
}

// Links
// -----

a, .link {
color: $linkColor;
text-decoration: none;
}
a:hover, .link:hover {
color: $linkColorHover;
text-decoration: underline;
}

@page {
margin-left: 0;
margin-right: 0;
Expand Down
5 changes: 3 additions & 2 deletions styles/sass/sf-additional.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1674,19 +1674,20 @@
position: relative;
text-align: center;
font-style: italic;
color: var(--color-text-light);
&:before {
content: "_________";
position: absolute;
top: -6px;
color: #d0d0d0;
color: var(--sd-colour-line--medium);
left: 50%;
margin-left: -75px;
}
&:after {
content: "_________";
position: absolute;
top: -6px;
color: #d0d0d0;
color: var(--sd-colour-line--medium);;
left: 50%;
margin-left: 15px;
}
Expand Down
Loading

0 comments on commit ce1b736

Please sign in to comment.