grub-fork/public/css/styles.css

82 lines
1.1 KiB
CSS
Raw Normal View History

2013-09-01 10:39:35 +00:00
html, body {
height: 100%;
min-height: 100%;
width: 100%;
min-width: 100%;
margin: 0px;
}
2013-08-25 09:55:25 +00:00
h3 {
margin-top: 10px;
}
2013-08-25 10:53:47 +00:00
.hidden {
display: none;
}
2013-08-04 18:15:56 +00:00
.grub-close {
display: none;
}
tr:hover .grub-close {
display: block;
}
#grub-list {
margin-top: 10px;
2013-08-25 10:53:47 +00:00
margin-bottom: 10px;
}
.grub-item {
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2013-09-01 10:39:35 +00:00
.grub-item.grub-active {
color: #ffffff;
background-color: rgb(71, 73, 73);
}
2013-09-01 10:39:35 +00:00
.grub-item .input-span {
display: block;
overflow: hidden;
}
.grub-item .grub-static {
display: inline;
}
.grub-item .grub-input {
display: none;
}
.grub-item.edit .grub-static {
display: none;
}
.grub-item.edit .grub-input {
display: inline;
width: 100%;
}
.grub-item .glyphicon {
margin-right: 5px;
}
.completed {
text-decoration: line-through;
color: #a9a9a9;
}
2013-08-25 10:53:47 +00:00
2013-09-01 10:39:35 +00:00
.completed.edit {
text-decoration: none;
color: default;
}
2013-08-25 10:53:47 +00:00
#clear-all-btn {
float: right;
}