1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-22 14:49:42 +02:00
documize/gui/app/styles/core/reset.scss
McMatts 1d00f8ac6e Allow sorting of search results and space contents
Closes #187

Sort search results and space contents by Name, Created or Revised.
2019-03-13 11:40:36 +00:00

52 lines
1.1 KiB
SCSS

// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-ms-overflow-style: -ms-autohiding-scrollbar;
text-rendering: optimizeLegibility;
height: 100%;
width: 100%;
overflow-y: scroll;
font-size: 0.875rem;
}
body {
display: flex;
flex-direction: column;
height: 100%;
// height: 100vh;
}
ul {
margin: 0;
padding: 0;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset;
box-shadow: 0 0 0 1000px white inset;
}
::-webkit-scrollbar {
width: 7px;
}
::-webkit-scrollbar-track {
background: map-get($gray-shades, 100);
}
::-webkit-scrollbar-thumb {
background: map-get($gray-shades, 300);
&:hover {
background: map-get($gray-shades, 600);
}
}