Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publisher related fixes #4287

Merged
merged 10 commits into from
Jul 5, 2023
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
Loading