@charset "UTF-8";
/*
 * jQuery File Upload Plugin CSS Example
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * https://opensource.org/licenses/MIT
 */

/* have to make this very specific to trump style in bootstrap.css */
.table-striped > tbody > tr.template-dir:nth-of-type(2n+1) {
    background-color: #EFD9D9;
}

.table-striped > tbody > tr.template-dir:nth-of-type(2n) {
    background-color: #FFE9E9;
}

.template-dir > td > .name {
    text-decoration: underline;
}

body {
    margin-top: 10px;
}

.admin-block {
    padding: 8px;
    background-color: #E9E9FF;
}

div#path {
    font-size: large;
    font-weight: bold;
    padding: 8px;
    background-color: #E9FFE9;
}





/* modal dialog from https://www.w3schools.com/howto/howto_css_modals.asp added by nolty */

 /* The Modal (background) */
.are-you-sure-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.are-you-sure-modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.are-you-sure-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.are-you-sure-close:hover,
.are-you-sure-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 
