* Fix the columns breaking when language name breaks to new line * Fix the Map highlighting when no region id in viewport. * Correction of color codes, margins according to design. Change-Id: I0121de92bdf5340bf2365c3b7d6045ef963e6d2a
47 lines
819 B
CSS
47 lines
819 B
CSS
.uls-lcd-region-section h3 {
|
|
color: #999999;
|
|
}
|
|
.uls-lcd-region-section ul {
|
|
list-style: none;
|
|
float: left;
|
|
width: 140px;
|
|
margin-left: 5px;
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
.uls-lcd-region-section ul li:hover {
|
|
background-color: #BFBFBF;
|
|
}
|
|
.uls-lcd-region-section {
|
|
clear: both;
|
|
}
|
|
/* Language list */
|
|
.uls-language-list {
|
|
height: 300px;
|
|
overflow: auto;
|
|
margin-top: 2%;
|
|
}
|
|
.uls-language-list ul li {
|
|
font-weight: normal;
|
|
/* TODO: maybe not the best way */
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.uls-language-list strong {
|
|
text-decoration: underline;
|
|
}
|
|
.uls-language-list a {
|
|
font-weight: normal;
|
|
color: #0088CC;
|
|
}
|
|
div.uls-lcd-row:after {
|
|
clear: both;
|
|
}
|
|
div.uls-lcd-row:before, div.uls-lcd-row:after {
|
|
content: "";
|
|
display: table;
|
|
}
|
|
div.uls-lcd-row {
|
|
padding-bottom: 10px;
|
|
} |