37 lines
536 B
SCSS
37 lines
536 B
SCSS
/*
|
|
Crafting Table - mod.scss
|
|
|
|
Copyright (c) 2014-2015 by Redwood Labs
|
|
All rights reserved.
|
|
*/
|
|
|
|
.view__mod_selector {
|
|
position: relative; width: 100%;
|
|
display: table-row;
|
|
|
|
div, p {
|
|
display: table-cell;
|
|
padding: 0.4em;
|
|
}
|
|
|
|
.version {
|
|
width: 12em;
|
|
|
|
select {
|
|
position: relative; width: 100%;
|
|
}
|
|
}
|
|
|
|
.name {
|
|
width: 18em;
|
|
|
|
p {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&.disabled {
|
|
p { color: $color-gray-light; }
|
|
}
|
|
}
|