mirror of
https://github.com/S2-/gitlit
synced 2025-08-02 12:20:05 +02:00
43 lines
721 B
CSS
43 lines
721 B
CSS
.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;
|
|
}
|