streams/view/css/mod_wiki.css

74 lines
1.1 KiB
CSS
Raw Normal View History

#ace-editor {
position: relative;
width: 100%;
2016-12-10 16:17:11 +00:00
height: 500px;
2016-12-10 14:08:49 +00:00
border: 1px solid #ccc;
border-top: 0px;
}
#editor {
width: 100%;
height: 500px;
2016-12-10 14:08:49 +00:00
border: 1px solid #ccc;
border-top: 0px;
display: inherit;
}
#id_commitMsg_wrapper {
margin-top: 3px;
}
.fade.in {
-webkit-transition: opacity 0.5s 0.5s ease;
-moz-transition: opacity 0.5s 0.5s ease;
-o-transition: opacity 0.5s 0.5s ease;
transition: opacity 0.5s 0.5s ease;
}
#new-wiki-form-wrapper {
display: none;
}
#wikis-index {
width: 100%;
}
2018-05-04 20:13:45 +00:00
td > i {
2017-09-20 13:03:57 +00:00
padding: 7px 5px;
cursor: pointer;
}
#wikis-index th:nth-child(1),
#wikis-index td:nth-child(1){
padding: 7px 3px 7px 10px;
}
2017-09-20 13:03:57 +00:00
#wikis-index th:nth-last-child(1),
#wikis-index td:nth-last-child(1){
padding-right: 10px;
}
pre code {
background: #F5F5F5;
font-family: Courier, monospace;
font-size: 1em;
padding: 1em 1.5em;
display: block;
white-space: pre-wrap;
2018-06-15 05:46:20 +00:00
word-break: break-all;
}
code {
background: #F5F5F5;
font-family: Courier, monospace;
font-size: 1em;
display: inline;
padding: 0.2em 0.2em;
white-space: pre-wrap;
2018-06-15 05:46:20 +00:00
word-break: break-all;
}
#wiki-content-container code {
background: #F5F5F5;
2018-05-04 20:13:45 +00:00
}