Support for back links for uls-compact

Added styles for links that are inserted in the header of the list
to allow the user to go back for multi-step dialogs.

Change-Id: I062086e23d0d5275fd577d9977313b0ac25cf014
This commit is contained in:
Pau Giner
2013-03-14 23:02:45 +01:00
committed by Santhosh Thottingal
parent e23d7171d5
commit 44ff5e0120
2 changed files with 48 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
.uls-compact .icon-close,
.uls-compact .uls-title-region,
.uls-compact .uls-title,
.uls-compact .map-block {
display: none !important;
}
@@ -42,3 +42,31 @@
.uls-compact .languagefilter-clear {
margin-left: 0;
}
.uls-compact .uls-title-region a {
color: #777;
display: inline-block;
margin: 15px 0 5px 19px;
cursor: pointer;
padding: 6px;
font-size: 14px;
border: 1px solid transparent;
}
.uls-compact .uls-title-region a:hover {
color: #252525;
background: #F0F0F0;
border: 1px solid #DDD;
border-radius: 3px;
}
.uls-compact .uls-title-region a:before {
display: inline-block;
width: 0;
height: 0;
border-right: 4px solid #777;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
content: "";
margin: 0 6px 0 0;
}