/* 
Developed by:  Melinda Kraft, makraft@umich.edu
Version:       R5
Date:          5/23/2022
KMS Version:   Developed for v. 5.2.x

Description:
This file provides additional style overrides not included in the styling module. 
Thumbnail text info (uploaded by, date) is hidden. If you want thumbnail info displayed,
use the with-thumb-info version of this file.

How to use:
Set KMS header module theme to "dark."
Upload this file under the "additional" section of the Cssupload module 

Change log:
5/23/2022 official version for KMS
4/3/17 - Added line fix to carousel title color at about line 50
3.10.15 - at about line 68 add hyperlink styling on media details text and metadata fields.  
*/



    
/*fix search box background color in UM Theme */
.navbar-inverse .navbar-search .search-query {
  background-color: #fff;
  border-color: #00274c;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #00274c;
  transition: none 0s ease 0s ;
}

/*set title color in homepage module carousel to maize 4/3/2017 */
.home__carousel-entry-title {
	color:#f2c413;
} 

/* fix tag/category button colors*/
.label-info, .badge-info {
    background-color: #00274c;
}

.label-info[href], .badge-info[href] {
    background-color: #00274c;
}

/*set all the H1 headings to UM Blue */
h1 {
color: #02254a;
}

/*add underline to hyperlinks in description area*/
.normalWordBreak a:link {
text-decoration:underline;}

/*add underline to hyperlinks in the media metadata details section*/
.dl-horizontal > dd a:link {
text-decoration:underline;
}

/*hide underline on buttons in media metadata details section*/
.dl-horizontal > dd a.badge:link {
text-decoration:none !important;}


