nextcloud-notes/css/notes.css

47 lines
1.1 KiB
CSS
Raw Normal View History

2013-04-03 18:21:48 +02:00
/**
* Copyright (c) 2013, Jan-Christoph Borchardt http://jancborchardt.net
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING file.
*/
2013-04-02 18:45:52 +02:00
#app-navigation {
2013-04-03 18:21:48 +02:00
padding-bottom: 0; /* no settings bar, so no padding needed */
2013-04-02 18:45:52 +02:00
}
2013-04-02 11:41:18 +02:00
#app-navigation li.active {
2013-04-03 18:21:48 +02:00
font-weight: bold; /* bold currently active note */
2013-02-09 00:07:30 +01:00
}
2013-04-03 18:21:48 +02:00
/* fancy handling of 'New Note' text */
2013-04-02 11:41:18 +02:00
#app-navigation #note-add span {
display: none;
font-weight: bold;
padding-left: 2px;
}
2013-04-03 18:21:48 +02:00
#app-navigation #note-add:hover span,
#app-navigation #note-add:focus span {
display: inline;
}
2013-04-03 18:21:48 +02:00
/* special styling to make textarea subtle and fit the window */
2013-04-02 11:41:18 +02:00
#app-content textarea {
2013-02-09 18:50:41 +01:00
display: block;
height: 100%;
width: 100%;
2013-04-03 18:21:48 +02:00
margin: 0;
padding: 30px 20% 100px 30px;
2013-02-09 00:07:30 +01:00
font-size: 18px;
line-height: 150%;
border: 0;
background: none;
box-shadow: none;
resize: none;
2013-04-03 18:21:48 +02:00
-moz-box-sizing: border-box; box-sizing: border-box;
2013-01-03 19:42:15 +01:00
}
2013-04-02 18:45:52 +02:00
2013-04-03 18:21:48 +02:00
/* TODO: move into core app styles */
2013-04-02 18:45:52 +02:00
#app-content.loading {
background-image: url('%webroot%/core/img/loading.gif');
background-position: center;
background-repeat: no-repeat;
}