Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
pleroma-fe
Commits
8db70ffa
There was a problem fetching the pipeline summary.
Commit
8db70ffa
authored
6 years ago
by
Shpuld Shpludson
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing border radii and read button text color
parent
7ccbec21
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/App.scss
+5
-0
5 additions, 0 deletions
src/App.scss
src/components/chat_panel/chat_panel.vue
+1
-1
1 addition, 1 deletion
src/components/chat_panel/chat_panel.vue
src/components/notifications/notifications.scss
+7
-4
7 additions, 4 deletions
src/components/notifications/notifications.scss
with
13 additions
and
5 deletions
src/App.scss
+
5
−
0
View file @
8db70ffa
...
...
@@ -274,6 +274,11 @@ main-router {
background-color
:
var
(
--
btn
,
$fallback--btn
);
}
.panel-heading.stub
{
border-radius
:
$fallback--panelRadius
;
border-radius
:
var
(
--
panelRadius
,
$fallback--panelRadius
);
}
.panel-footer
{
border-radius
:
0
0
$fallback--panelRadius
$fallback--panelRadius
;
border-radius
:
0
0
var
(
--
panelRadius
,
$fallback--panelRadius
)
var
(
--
panelRadius
,
$fallback--panelRadius
);
...
...
This diff is collapsed.
Click to expand it.
src/components/chat_panel/chat_panel.vue
+
1
−
1
View file @
8db70ffa
...
...
@@ -30,7 +30,7 @@
</div>
<div
v-else
class=
"chat-panel"
>
<div
class=
"panel panel-default"
>
<div
class=
"panel-heading
panel-footer
timeline-heading chat-heading"
@
click.stop.prevent=
"togglePanel"
>
<div
class=
"panel-heading
stub
timeline-heading chat-heading"
@
click.stop.prevent=
"togglePanel"
>
<div
class=
"title"
>
{{
$t
(
'
chat.title
'
)
}}
<i
class=
"icon-plus-squared"
style=
"float: right;"
></i>
...
...
This diff is collapsed.
Click to expand it.
src/components/notifications/notifications.scss
+
7
−
4
View file @
8db70ffa
...
...
@@ -27,10 +27,6 @@
right
:
0
.7em
;
height
:
1
.8em
;
line-height
:
100%
;
background-color
:
$fallback--btn
;
background-color
:
var
(
--
btn
,
$fallback--btn
);
color
:
$fallback--faint
;
color
:
var
(
--
faint
,
$fallback--faint
);
}
}
...
...
@@ -196,7 +192,14 @@
}
}
// ugly as heck
&
:last-child
{
border-bottom
:
none
;
border-radius
:
0
0
$fallback--panelRadius
$fallback--panelRadius
;
border-radius
:
0
0
var
(
--
panelRadius
,
$fallback--panelRadius
)
var
(
--
panelRadius
,
$fallback--panelRadius
);
.status-el
{
border-radius
:
0
0
$fallback--panelRadius
$fallback--panelRadius
;
border-radius
:
0
0
var
(
--
panelRadius
,
$fallback--panelRadius
)
var
(
--
panelRadius
,
$fallback--panelRadius
);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment