Consolidate selection colors in the drop down menu and browser tree to match the light blue agreed upon in the styleguide.

This commit is contained in:
Shruti B Iyer 2017-06-21 11:11:49 +01:00 committed by Dave Page
parent f0202228d0
commit 281b67952a
3 changed files with 22 additions and 0 deletions

View File

@ -1,4 +1,21 @@
.aciTree .aciTreeText {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 12px;
}
/* Hover over an element */
.aciTree .aciTreeLine.aciTreeHover .aciTreeItem {
background-color: #e7f2ff;
border-color: #84acdd;
}
/* Selected element and in focus*/
.aciTree.aciTreeFocus .aciTreeFocus > .aciTreeLine .aciTreeItem {
background-color: #e7f2ff;
}
/* Selected element but not in focus */
.aciTree .aciTreeSelected > .aciTreeLine .aciTreeItem {
background-color: #e7f2ff;
border-color: #84acdd;
}

View File

@ -0,0 +1,4 @@
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: #e7f2ff;
color: #333333;
}

View File

@ -61,6 +61,7 @@
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.overrides.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/aci_tree.overrides.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/select2.overrides.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/pgadmin.css') }}"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/pgadmin.style.css') }}"/>
{% block css_link %}{% endblock %}