Changeset 14179
- Timestamp:
- 22 Sep 2016, 20:30:14 (8 years ago)
- Location:
- main/ikobacustom.uniben/trunk/layout
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.uniben/trunk/layout/rules.xml
r14178 r14179 126 126 --> 127 127 128 <!-- the language selector129 130 quite tricky. We insert a <li> element at beginning of131 ul.ikoba-navbar-right. This <li> has a header element132 (the 'Language' button) and the a number of <li> elements133 representing the supported languages.134 We change the input content of format135 136 <a href="foo" title="Lang">Abbrev</a>137 138 to139 140 <a href="foo">Lang</a>141 142 creating new nodes (<xsl:element>) with attributes copied over.143 -->144 <before css:theme-children="ul.ikoba-navbar-right">145 <li class="dropdown ikoba-langselect">146 <a href="#" class="dropdown-toggle"147 data-toggle="dropdown">148 <img src="/static/img/earth.png" />149 </a>150 <ul class="dropdown-menu">151 <xsl:for-each css:select=" .language a">152 <li class="ikoba-language">153 <xsl:element name="a">154 <xsl:attribute name="href">155 <xsl:value-of select="@href" />156 </xsl:attribute>157 <xsl:value-of select="@title" />158 </xsl:element>159 </li>160 </xsl:for-each>161 </ul>162 </li>163 </before>164 165 128 <!-- Make all data tables responsive --> 166 129 -
main/ikobacustom.uniben/trunk/layout/static/custom.css
r13792 r14179 1 1 a { 2 color: # 03418a;2 color: #8A0474; 3 3 } 4 4 5 5 a:hover { 6 color: # 0d3664;6 color: #4e0242; 7 7 } 8 8 … … 12 12 13 13 .navbar-inverse { 14 background-color: # 0d3664;15 background-image: -webkit-linear-gradient(top, # 0d3664 0%, #03418a100%);16 background-image: linear-gradient(to bottom, # 0d3664 0%, #03418a100%);14 background-color: #4e0242; 15 background-image: -webkit-linear-gradient(top, #4e0242 0%, #8A0474 100%); 16 background-image: linear-gradient(to bottom, #4e0242 0%, #8A0474 100%); 17 17 background-repeat: repeat-x; 18 18 } … … 28 28 .navbar-inverse .navbar-nav > .active > a:focus { 29 29 color: #ffffff; 30 background-color: # 03418a;30 background-color: #8A0474; 31 31 background-image: none; 32 32 background-image: none; … … 37 37 38 38 .navbar-inverse .navbar-toggle { 39 border-color: # 03418a;39 border-color: #8A0474; 40 40 } 41 41 42 42 .navbar-inverse .navbar-toggle:hover, 43 43 .navbar-inverse .navbar-toggle:focus { 44 background-color: #03418a; 45 } 46 47 .navbar-inverse .navbar-nav > .open > a, 48 .navbar-inverse .navbar-nav > .open > a:hover, 49 .navbar-inverse .navbar-nav > .open > a:focus { 50 background-color: #03418a; 51 color: #fff; 44 background-color: #8A0474; 52 45 } 53 46 -
main/ikobacustom.uniben/trunk/layout/theme.html
r14178 r14179 192 192 <div class="col-md-10 content ikoba-content-narrow"> 193 193 <div id="logo-container-narrow"> 194 < img src="static_custom/pcn_logo.png" width="65">194 <!-- Place logo here --> 195 195 </div> 196 196 <div class="well">
Note: See TracChangeset for help on using the changeset viewer.