debian-mirror-gitlab/app/assets/stylesheets/pages/wiki.scss

158 lines
2.3 KiB
SCSS
Raw Normal View History

2014-09-02 18:07:02 +05:30
.title .edit-wiki-header {
width: 780px;
margin-left: auto;
margin-right: auto;
padding-right: 7px;
}
2017-08-17 22:00:37 +05:30
.wiki-page-header {
position: relative;
.wiki-breadcrumb {
border-bottom: 1px solid $white-normal;
padding: 11px 0;
}
.wiki-page-title {
margin: 0;
font-size: 22px;
}
.wiki-last-edit-by {
display: block;
color: $gl-text-color-secondary;
strong {
color: $gl-text-color;
}
}
.light {
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-normal;
2017-08-17 22:00:37 +05:30
color: $gl-text-color-secondary;
}
.git-clone-holder {
2019-12-04 20:38:33 +05:30
.input-group-prepend,
.input-group-append {
background-color: transparent;
}
2017-08-17 22:00:37 +05:30
}
button.sidebar-toggle {
position: absolute;
right: 0;
top: 11px;
display: block;
}
2019-12-04 20:38:33 +05:30
&.has-sidebar-toggle .git-access-header {
padding-right: $sidebar-toggle-width;
2017-08-17 22:00:37 +05:30
}
2018-11-08 19:23:39 +05:30
@include media-breakpoint-up(md) {
2017-08-17 22:00:37 +05:30
&.has-sidebar-toggle {
padding-right: 0;
}
button.sidebar-toggle {
display: none;
}
}
}
.wiki-git-access {
margin: $gl-padding 0;
h3 {
2017-09-10 17:25:29 +05:30
font-size: 19px;
2018-03-17 18:26:18 +05:30
font-weight: $gl-font-weight-normal;
2017-09-10 17:25:29 +05:30
margin: $gl-padding 0;
2017-08-17 22:00:37 +05:30
}
}
.right-sidebar.wiki-sidebar {
2017-09-10 17:25:29 +05:30
padding: 0;
2017-08-17 22:00:37 +05:30
&.right-sidebar-collapsed {
display: none;
}
2017-09-10 17:25:29 +05:30
.sidebar-container {
padding: $gl-padding 0;
padding-right: 100px;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
2017-08-17 22:00:37 +05:30
.blocks-container {
padding: 0 $gl-padding;
}
a {
color: $layout-link-gray;
&:hover,
&.active {
2018-03-17 18:26:18 +05:30
text-decoration: none;
span {
text-decoration: underline;
}
2017-08-17 22:00:37 +05:30
}
}
.active > a {
color: $black;
}
ul.wiki-pages,
ul.wiki-pages li {
list-style: none;
padding: 0;
margin: 0;
}
ul.wiki-pages li {
margin: 5px 0 10px;
}
ul.wiki-pages ul {
padding-left: 15px;
}
.wiki-sidebar-header {
padding: 0 $gl-padding $gl-padding;
.gutter-toggle {
margin-top: 0;
}
}
}
ul.wiki-pages-list.content-list {
2019-09-30 21:07:59 +05:30
a {
color: $blue-600;
}
2017-09-10 17:25:29 +05:30
ul {
2017-08-17 22:00:37 +05:30
list-style: none;
margin-left: 0;
padding-left: 15px;
2018-03-17 18:26:18 +05:30
li {
padding: 5px 0;
}
2017-08-17 22:00:37 +05:30
}
}
2020-07-28 23:09:34 +05:30
.empty-state-wiki .text-content {
max-width: 490px; // Widen to allow for the Confluence button
}
2020-11-24 15:15:51 +05:30
.wiki-form .markdown-area {
max-height: none;
}