forked from Archives/Athou_commafeed
remove bootstrap icons as we are using fontawesome now
This commit is contained in:
@@ -29,7 +29,7 @@ public class BootstrapReference extends UrlResourceReference {
|
|||||||
.asList(JavaScriptHeaderItem
|
.asList(JavaScriptHeaderItem
|
||||||
.forReference(JQueryReference.INSTANCE),
|
.forReference(JQueryReference.INSTANCE),
|
||||||
CssHeaderItem.forReference(new UrlResourceReference(
|
CssHeaderItem.forReference(new UrlResourceReference(
|
||||||
Url.parse("https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css"))),
|
Url.parse("https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.no-icons.min.css"))),
|
||||||
CssHeaderItem.forReference(new UrlResourceReference(
|
CssHeaderItem.forReference(new UrlResourceReference(
|
||||||
Url.parse("https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css"))));
|
Url.parse("https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css"))));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,16 +66,22 @@
|
|||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-treeview .icon-fldr {
|
.css-treeview .fldr {
|
||||||
background: url("../images/tree_icons.png") no-repeat;
|
background: url("../images/tree_icons.png") no-repeat;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
line-height: 14px;
|
||||||
|
vertical-align: text-top;
|
||||||
|
margin-top: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-treeview .icon-fldr-open {
|
.css-treeview .fldr-open {
|
||||||
background-position: 0 -16px;
|
background-position: 0 -16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-treeview .icon-fldr-closed {
|
.css-treeview .fldr-closed {
|
||||||
background-position: 0 -32px;
|
background-position: 0 -32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<span class="icon-fldr" ng-class="{'icon-fldr-closed': !node.expanded, 'icon-fldr-open': node.expanded}" ng-click="toggleCategory(node)"></span>
|
<span class="fldr" ng-class="{'fldr-closed': !node.expanded, 'fldr-open': node.expanded}" ng-click="toggleCategory(node)"></span>
|
||||||
<span ng-click="categoryClick({id: node.id})">
|
<span ng-click="categoryClick({id: node.id})">
|
||||||
<span class="icon-fldr icon-fldr-folder"></span>
|
<span class="fldr"></span>
|
||||||
<span ng-class="{selected: (node.id == selectedId && selectedType == 'category'), unread: unreadCount({category:node})}">{{formatCategoryName({category:node})}}
|
<span ng-class="{selected: (node.id == selectedId && selectedType == 'category'), unread: unreadCount({category:node})}">{{formatCategoryName({category:node})}}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user