mirror of
https://github.com/humhub/humhub.git
synced 2025-01-16 13:51:42 +01:00
Define Link Color on body Level #519 & Fix wall entry headers
This commit is contained in:
parent
d5c0b450cd
commit
b66956dfe6
@ -21,7 +21,6 @@ body {
|
||||
a:focus,
|
||||
a:active,
|
||||
a.active {
|
||||
color: var(--hh-text-color-highlight);
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
@ -79,7 +78,6 @@ hr {
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-weight: 300;
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
@ -131,10 +129,6 @@ span.likeLinkContainer .like.disabled, span.likeLinkContainer .unlike.disabled {
|
||||
color: lightgrey;
|
||||
}
|
||||
|
||||
.panel-body a[data-bs-toggle], .modal-body a[data-bs-toggle] {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
.showMore {
|
||||
font-size: 13px;
|
||||
}
|
||||
|
@ -213,16 +213,6 @@ a.label-warning:hover {
|
||||
|
||||
.module-controls {
|
||||
font-size: 85%;
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
|
||||
@ -329,10 +319,6 @@ a.label-warning:hover {
|
||||
|
||||
p {
|
||||
color: var(--hh-text-color-main);
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
|
||||
.usersearch-statuses,
|
||||
|
@ -97,10 +97,6 @@ ul.files {
|
||||
padding: 10px;
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 10px !important;
|
||||
|
||||
a, a:active, a:focus, a:hover {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
border-left: 3px solid var(--bs-info);
|
||||
}
|
||||
|
||||
&a, a {
|
||||
&, a {
|
||||
color: var(--hh-text-color-main);
|
||||
}
|
||||
|
||||
@ -89,7 +89,6 @@
|
||||
|
||||
.content a {
|
||||
word-break: break-all;
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
strong {
|
||||
@ -103,10 +102,6 @@
|
||||
|
||||
.module-controls {
|
||||
font-size: 85%;
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
|
||||
.content .files a {
|
||||
|
@ -24,10 +24,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.panel a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
color: #fff !important;
|
||||
|
@ -150,7 +150,6 @@ $md-block-spacing: 1.2em;
|
||||
a:visited {
|
||||
background-color: inherit;
|
||||
text-decoration: none;
|
||||
color: var(--bs-link-color) !important;
|
||||
}
|
||||
|
||||
a.header-anchor {
|
||||
|
@ -80,12 +80,7 @@
|
||||
}
|
||||
|
||||
.atwho-user,
|
||||
.atwho-space,
|
||||
.atwho-input a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
.atwho-input a:hover {
|
||||
.atwho-space {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
|
@ -218,10 +218,6 @@ ul.tab-menu-settings {
|
||||
}
|
||||
|
||||
.tab-content .tab-pane {
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
.mb-3 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
@ -20,10 +20,6 @@
|
||||
padding: 5px 15px;
|
||||
color: var(--hh-text-color-highlight);
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
@ -616,12 +616,7 @@
|
||||
}
|
||||
|
||||
.atwho-user,
|
||||
.atwho-space,
|
||||
.atwho-input a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
.atwho-input a:hover {
|
||||
.atwho-space {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
@ -667,10 +662,6 @@
|
||||
[data-ui-richtext] {
|
||||
overflow-x: auto;
|
||||
overflow-wrap: break-word;
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color)
|
||||
}
|
||||
}
|
||||
|
||||
#wallStream {
|
||||
|
@ -144,10 +144,17 @@ $wallEntryContentLeftPaddingMobile: 0;
|
||||
padding-right: 30px;
|
||||
width: 100%;
|
||||
|
||||
h4, h5 {
|
||||
h4 {
|
||||
font-size: 15px;
|
||||
padding-top: 1px;
|
||||
margin-bottom: 3px;
|
||||
a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
i.archived {
|
||||
@ -211,10 +218,6 @@ $wallEntryContentLeftPaddingMobile: 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
@ -230,7 +233,7 @@ $wallEntryContentLeftPaddingMobile: 0;
|
||||
}
|
||||
}
|
||||
|
||||
h4, h5 {
|
||||
h4 {
|
||||
font-size: 14px;
|
||||
padding-top: 1px;
|
||||
margin-bottom: 3px;
|
||||
@ -251,11 +254,12 @@ $wallEntryContentLeftPaddingMobile: 0;
|
||||
|
||||
}
|
||||
|
||||
h4, h5 {
|
||||
h5 {
|
||||
color: var(--hh-text-color-soft);
|
||||
font-size: 12px;
|
||||
|
||||
.time {
|
||||
a .time {
|
||||
color: var(--hh-text-color-soft);
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@ -310,9 +314,9 @@ $wallEntryContentLeftPaddingMobile: 0;
|
||||
|
||||
.wall-entry-controls a {
|
||||
font-size: 11px;
|
||||
color: var(--bs-link-color);
|
||||
margin-top: 10px;
|
||||
margin-bottom: 0;
|
||||
color: var(--hh-text-color-soft);
|
||||
}
|
||||
|
||||
#wall-stream-filter-nav {
|
||||
|
@ -16,6 +16,9 @@ table {
|
||||
font-size: 11px;
|
||||
color: var(--hh-text-color-soft);
|
||||
font-weight: normal;
|
||||
a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
}
|
||||
|
||||
thead tr th {
|
||||
@ -25,12 +28,6 @@ table {
|
||||
.time {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
td {
|
||||
a:hover {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.table > thead > tr > th,
|
||||
|
@ -7,12 +7,8 @@ ul.tour-list {
|
||||
li {
|
||||
padding-top: 5px;
|
||||
|
||||
a {
|
||||
color: var(--bs-link-color);
|
||||
|
||||
.fa {
|
||||
width: 16px;
|
||||
}
|
||||
a .fa {
|
||||
width: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -10810,7 +10810,6 @@ body {
|
||||
line-height: var(--bs-body-line-height);
|
||||
}
|
||||
body a, body a:hover, body a:focus, body a:active, body a.active {
|
||||
color: var(--hh-text-color-highlight);
|
||||
text-decoration: none;
|
||||
}
|
||||
b, strong {
|
||||
@ -10845,7 +10844,6 @@ hr {
|
||||
padding: 0 15px 0 0;
|
||||
}
|
||||
h4, .h4 {
|
||||
font-weight: 300;
|
||||
font-size: 150%;
|
||||
}
|
||||
h5, .h5 {
|
||||
@ -10883,9 +10881,6 @@ span.likeLinkContainer .like.disabled, span.likeLinkContainer .unlike.disabled {
|
||||
text-decoration: none;
|
||||
color: lightgrey;
|
||||
}
|
||||
.panel-body a[data-bs-toggle], .modal-body a[data-bs-toggle] {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.showMore {
|
||||
font-size: 13px;
|
||||
}
|
||||
@ -11235,9 +11230,6 @@ span.likeLinkContainer .like.disabled, span.likeLinkContainer .unlike.disabled {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.login-container .panel a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.login-container h1, .login-container .h1, .login-container h2, .login-container .h2 {
|
||||
color: #fff !important;
|
||||
}
|
||||
@ -11594,9 +11586,6 @@ ul.tab-menu-settings .nav-link.active {
|
||||
display: inline-block;
|
||||
width: 18px;
|
||||
}
|
||||
.tab-content .tab-pane a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.tab-content .tab-pane .mb-3 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
@ -12352,9 +12341,6 @@ div.mb-3 div.checkbox .invalid-feedback:empty {
|
||||
padding: 5px 15px;
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
.popover .popover-content a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.popover .popover-content img {
|
||||
max-width: 100%;
|
||||
}
|
||||
@ -12403,7 +12389,7 @@ div.mb-3 div.checkbox .invalid-feedback:empty {
|
||||
background-color: var(--hh-background-color-secondary);
|
||||
border-left: 3px solid var(--bs-info);
|
||||
}
|
||||
.hh-list > div:not(.stream-end)a, .hh-list > div:not(.stream-end) a, .hh-list > a:not(.stream-end)a, .hh-list > a:not(.stream-end) a {
|
||||
.hh-list > div:not(.stream-end), .hh-list > div:not(.stream-end) a, .hh-list > a:not(.stream-end), .hh-list > a:not(.stream-end) a {
|
||||
color: var(--hh-text-color-main);
|
||||
}
|
||||
.hh-list > div:not(.stream-end).new, .hh-list > a:not(.stream-end).new {
|
||||
@ -12459,7 +12445,6 @@ div.mb-3 div.checkbox .invalid-feedback:empty {
|
||||
}
|
||||
.hh-list > div:not(.stream-end) .content a, .hh-list > a:not(.stream-end) .content a {
|
||||
word-break: break-all;
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.hh-list > div:not(.stream-end) strong, .hh-list > a:not(.stream-end) strong {
|
||||
color: var(--hh-text-color-highlight);
|
||||
@ -12471,9 +12456,6 @@ div.mb-3 div.checkbox .invalid-feedback:empty {
|
||||
.hh-list > div:not(.stream-end) .module-controls, .hh-list > a:not(.stream-end) .module-controls {
|
||||
font-size: 85%;
|
||||
}
|
||||
.hh-list > div:not(.stream-end) .module-controls a, .hh-list > a:not(.stream-end) .module-controls a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.hh-list > div:not(.stream-end) .content .files a, .hh-list > a:not(.stream-end) .content .files a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
@ -12700,15 +12682,15 @@ table th {
|
||||
color: var(--hh-text-color-soft);
|
||||
font-weight: normal;
|
||||
}
|
||||
table th a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
table thead tr th {
|
||||
border: none !important;
|
||||
}
|
||||
table .time {
|
||||
font-size: 12px;
|
||||
}
|
||||
table td a:hover {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
|
||||
padding: 10px 10px 10px 0;
|
||||
}
|
||||
@ -13100,11 +13082,17 @@ div.nested-comments-root div.comment-container {
|
||||
padding-right: 30px;
|
||||
width: 100%;
|
||||
}
|
||||
.wall-entry .wall-entry-header .wall-entry-header-info h4, .wall-entry .wall-entry-header .wall-entry-header-info .h4, .wall-entry .wall-entry-header .wall-entry-header-info h5, .wall-entry .wall-entry-header .wall-entry-header-info .h5 {
|
||||
.wall-entry .wall-entry-header .wall-entry-header-info h4, .wall-entry .wall-entry-header .wall-entry-header-info .h4 {
|
||||
font-size: 15px;
|
||||
padding-top: 1px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.wall-entry .wall-entry-header .wall-entry-header-info h4 a, .wall-entry .wall-entry-header .wall-entry-header-info .h4 a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
.wall-entry .wall-entry-header .wall-entry-header-info h5, .wall-entry .wall-entry-header .wall-entry-header-info .h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
.wall-entry .wall-entry-header .wall-entry-header-info i.archived {
|
||||
color: var(--bs-warning);
|
||||
}
|
||||
@ -13145,9 +13133,6 @@ div.nested-comments-root div.comment-container {
|
||||
.wall-entry .wall-stream-footer .wall-stream-addons .files {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.wall-entry .content a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.wall-entry .content img {
|
||||
max-width: 100%;
|
||||
}
|
||||
@ -13157,27 +13142,28 @@ div.nested-comments-root div.comment-container {
|
||||
.wall-entry .well .comment .showMore a {
|
||||
font-size: 12px;
|
||||
}
|
||||
.wall-entry h4, .wall-entry .h4, .wall-entry h5, .wall-entry .h5 {
|
||||
.wall-entry h4, .wall-entry .h4 {
|
||||
font-size: 14px;
|
||||
padding-top: 1px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.wall-entry h4 .labels, .wall-entry .h4 .labels, .wall-entry h5 .labels, .wall-entry .h5 .labels {
|
||||
.wall-entry h4 .labels, .wall-entry .h4 .labels {
|
||||
padding-right: 32px;
|
||||
}
|
||||
.wall-entry h4 .viaLink, .wall-entry .h4 .viaLink, .wall-entry h5 .viaLink, .wall-entry .h5 .viaLink {
|
||||
.wall-entry h4 .viaLink, .wall-entry .h4 .viaLink {
|
||||
font-size: 13px;
|
||||
}
|
||||
.wall-entry h4 .viaLink i, .wall-entry .h4 .viaLink i, .wall-entry h5 .viaLink i, .wall-entry .h5 .viaLink i {
|
||||
.wall-entry h4 .viaLink i, .wall-entry .h4 .viaLink i {
|
||||
color: var(--hh-text-color-soft);
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
.wall-entry h4, .wall-entry .h4, .wall-entry h5, .wall-entry .h5 {
|
||||
.wall-entry h5, .wall-entry .h5 {
|
||||
color: var(--hh-text-color-soft);
|
||||
font-size: 12px;
|
||||
}
|
||||
.wall-entry h4 .time, .wall-entry .h4 .time, .wall-entry h5 .time, .wall-entry .h5 .time {
|
||||
.wall-entry h5 a .time, .wall-entry .h5 a .time {
|
||||
color: var(--hh-text-color-soft);
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@ -13217,9 +13203,9 @@ div.nested-comments-root div.comment-container {
|
||||
}
|
||||
.wall-entry-controls a {
|
||||
font-size: 11px;
|
||||
color: var(--bs-link-color);
|
||||
margin-top: 10px;
|
||||
margin-bottom: 0;
|
||||
color: var(--hh-text-color-soft);
|
||||
}
|
||||
#wall-stream-filter-nav {
|
||||
font-size: 12px;
|
||||
@ -13509,9 +13495,6 @@ ul.files li.file-preview-item .file-fileInfo {
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
.post-file-list a, .post-file-list a:active, .post-file-list a:focus, .post-file-list a:hover {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
body.device-mobile #wallStream .post-files {
|
||||
margin-top: 10px;
|
||||
display: flex;
|
||||
@ -13637,9 +13620,6 @@ ul.tour-list {
|
||||
ul.tour-list li {
|
||||
padding-top: 5px;
|
||||
}
|
||||
ul.tour-list li a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
ul.tour-list li a .fa {
|
||||
width: 16px;
|
||||
}
|
||||
@ -13712,10 +13692,7 @@ ul.tour-list li.completed a {
|
||||
border-left: 3px solid var(--bs-info);
|
||||
background-color: var(--hh-background-color-secondary) !important;
|
||||
}
|
||||
.atwho-user, .atwho-space, .atwho-input a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.atwho-input a:hover {
|
||||
.atwho-user, .atwho-space {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.atwho-view strong {
|
||||
@ -13853,7 +13830,6 @@ ul.tour-list li.completed a {
|
||||
.markdown-render a, .markdown-render a:visited, [data-ui-markdown] a, [data-ui-markdown] a:visited, [data-ui-richtext] a, [data-ui-richtext] a:visited {
|
||||
background-color: inherit;
|
||||
text-decoration: none;
|
||||
color: var(--bs-link-color) !important;
|
||||
}
|
||||
.markdown-render a.header-anchor, [data-ui-markdown] a.header-anchor, [data-ui-richtext] a.header-anchor {
|
||||
color: var(--hh-text-color-main) !important;
|
||||
@ -14552,10 +14528,7 @@ img.bounceIn {
|
||||
border-left: 3px solid #85dce8;
|
||||
background-color: var(--hh-background-color-secondary) !important;
|
||||
}
|
||||
.atwho-user, .atwho-space, .atwho-input a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.atwho-input a:hover {
|
||||
.atwho-user, .atwho-space {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.atwho-view strong {
|
||||
@ -14592,9 +14565,6 @@ img.bounceIn {
|
||||
overflow-x: auto;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
[data-ui-markdown] a, [data-ui-richtext] a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
#wallStream [data-ui-markdown], #wallStream [data-ui-richtext] {
|
||||
overflow-wrap: initial;
|
||||
word-break: initial;
|
||||
@ -16193,12 +16163,6 @@ a.label-warning:hover {
|
||||
.media .media-body .module-controls {
|
||||
font-size: 85%;
|
||||
}
|
||||
.media .media-body .module-controls a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.media .content a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.media .content .files a {
|
||||
color: var(--hh-text-color-highlight);
|
||||
}
|
||||
@ -16276,9 +16240,6 @@ a.label-warning:hover {
|
||||
.panel .panel-body p {
|
||||
color: var(--hh-text-color-main);
|
||||
}
|
||||
.panel .panel-body p a {
|
||||
color: var(--bs-link-color);
|
||||
}
|
||||
.panel .panel-body .usersearch-statuses, .panel .panel-body .spacesearch-visibilities {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user