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