mirror of
https://github.com/S2-/gitlit
synced 2025-08-02 20:30:05 +02:00
62 lines
905 B
CSS
62 lines
905 B
CSS
html {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.jumbotron {
|
|
height: 640px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.js-container {
|
|
margin: 5px;
|
|
}
|
|
|
|
/*
|
|
* .electron-in-page-search-window is a class specified to default
|
|
* <webview> element for search window.
|
|
*/
|
|
.electron-in-page-search-window {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
border: solid grey 1px;
|
|
background-color: white;
|
|
width: 300px;
|
|
height: 36px;
|
|
}
|
|
|
|
/*
|
|
* .search-inactive is added to search window <webview> when the window
|
|
* is inactive.
|
|
*/
|
|
.search-inactive {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/*
|
|
* .search-inactive is added to search window <webview> when the window
|
|
* is active.
|
|
*/
|
|
.search-active {
|
|
visibility: visible;
|
|
}
|
|
|
|
/* Sortable tables */
|
|
table.sortable thead {
|
|
cursor: pointer;
|
|
}
|
|
|
|
table.sortable .sorttable_nosort {
|
|
cursor: default;
|
|
}
|
|
|
|
|
|
/*
|
|
* updater
|
|
*/
|
|
.updatenotice {
|
|
position: fixed;
|
|
bottom: 5px;
|
|
right: 5px;
|
|
}
|