fix css for icons inside info lists, also fixes #160 (icons of selected item lack loading style)
This commit is contained in:
parent
0d9f689605
commit
728fc69fb5
1 changed files with 39 additions and 1 deletions
|
@ -522,11 +522,30 @@ Lists
|
|||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
-moz-box-shadow: 0 0 0 transparent;
|
||||
-o-box-shadow: 0 0 0 transparent;
|
||||
-webkit-box-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
|
||||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div,
|
||||
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img,
|
||||
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxText > div {
|
||||
border-color: transparent;
|
||||
background-image: none;
|
||||
-moz-box-shadow: 0 0 0 transparent;
|
||||
-o-box-shadow: 0 0 0 transparent;
|
||||
-webkit-box-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.$themeClass .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading,
|
||||
.$themeClass .OxInfoList.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading {
|
||||
border-color: $listIconLoadingBorder;
|
||||
background-image: -moz-linear-gradient(top, $listIconLoadingGradient);
|
||||
background-image: -o-linear-gradient(top, $listIconLoadingGradient);
|
||||
background-image: -webkit-linear-gradient(top, $listIconLoadingGradient);
|
||||
}
|
||||
|
||||
|
||||
.$themeClass .OxTableList .OxContent {
|
||||
|
@ -725,6 +744,25 @@ Media
|
|||
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxText > div > .OxInfo {
|
||||
color: $mediaListIconTextFocusSelectedLightColor;
|
||||
}
|
||||
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon > img,
|
||||
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxText > div,
|
||||
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img,
|
||||
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxText > div {
|
||||
border-color: transparent;
|
||||
background-image: none;
|
||||
-moz-box-shadow: 0 0 0 transparent;
|
||||
-o-box-shadow: 0 0 0 transparent;
|
||||
-webkit-box-shadow: 0 0 0 transparent;
|
||||
}
|
||||
.$themeClass .OxInfoList.OxMedia .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading,
|
||||
.$themeClass .OxInfoList.OxMedia.OxFocus .OxItem.OxSelected .OxInfoElement .OxIcon > img.OxLoading {
|
||||
border-color: $listIconLoadingBorder;
|
||||
background-image: -moz-linear-gradient(top, $listIconLoadingGradient);
|
||||
background-image: -o-linear-gradient(top, $listIconLoadingGradient);
|
||||
background-image: -webkit-linear-gradient(top, $listIconLoadingGradient);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
|
|
Loading…
Reference in a new issue