mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-29 02:32:37 +00:00
Fixed the class table, got rid of the need for the non-breaking spaces
This commit is contained in:
@@ -1,53 +1,44 @@
|
||||
|
||||
.homebrewAdmin{
|
||||
|
||||
table{
|
||||
max-height: 800px;
|
||||
overflow-y: scroll;
|
||||
overflow-y : scroll;
|
||||
max-height : 800px;
|
||||
th{
|
||||
font-weight: 800;
|
||||
padding: 10px;
|
||||
padding : 10px;
|
||||
font-weight : 800;
|
||||
}
|
||||
|
||||
tr:nth-child(even){
|
||||
background-color: fade(@green, 10%);
|
||||
background-color : fade(@green, 10%);
|
||||
}
|
||||
tr.isEmpty{
|
||||
background-color: fade(@red, 30%);
|
||||
background-color : fade(@red, 30%);
|
||||
}
|
||||
td{
|
||||
min-width: 100px;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
|
||||
min-width : 100px;
|
||||
padding : 10px;
|
||||
text-align : center;
|
||||
&.preview{
|
||||
position: relative;
|
||||
|
||||
position : relative;
|
||||
&:hover{
|
||||
.content{
|
||||
display: block;
|
||||
display : block;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.content{
|
||||
font-family: monospace;
|
||||
text-align: left;
|
||||
padding : 30px;
|
||||
display: none;
|
||||
position: absolute;
|
||||
top : 100%;
|
||||
left: 0px;
|
||||
width : 300px;
|
||||
max-height : 500px;
|
||||
background-color: white;
|
||||
z-index : 1000;
|
||||
pointer-events: none;
|
||||
position : absolute;
|
||||
display : none;
|
||||
top : 100%;
|
||||
left : 0px;
|
||||
z-index : 1000;
|
||||
max-height : 500px;
|
||||
width : 300px;
|
||||
padding : 30px;
|
||||
background-color : white;
|
||||
font-family : monospace;
|
||||
text-align : left;
|
||||
pointer-events : none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user