/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 25, 2017, 1:22:35 PM
    Author     : wh
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
#todos {
  all: initial;
  background: #ddd;
  padding: 5px 10px;
  font-size: .8rem;
  background: #eee;
  display: inline-block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  font-family: Courier, Monospace;
}

#todos .users-list {
  display: none;
}

#todos *, #todos *:before, #todos * :after {
  font-family: unset;
  font-weight: unset;
}

#todos .dashicons {
  font-family: dashicons;
}

#todos .close-button {
  text-align: right;
  padding-right: 50px;
}

#todos .close-button .button {
  cursor: pointer;
}

#todos h5 {
  font-weight: bold;
}

#todos ul {
  list-style: none;
  padding: 0;
}

#todos textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}

#todos ul.todo-list li {
  border-bottom: 1px solid #ccc;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  position: relative;
}

#todos ul.todo-list li .content {
  width: 100%;
}

#todos ul.todo-list li .first-row {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
}

#todos ul.todo-list li .attachment-link {
  width: 80px;
}

#todos ul.todo-list li .todo-text {
  flex-grow: 2;
}

#todos ul.todo-list li .todo-assigned {
  font-size: 0.5rem;
  white-space: nowrap;
  background: #eee;
  display: inline-block;
  padding: 2px 4px 0px;
}

#todos ul.todo-list li .todo-assigned .dashicons {
  font-size: .4rem;
  position: relative;
  top: 3px;
}

#todos ul.todo-list li .users-list {
  position: absolute;
  right: 0;
  background: #000;
  padding: 0px 0;
  top: 31px;
  z-index: 20;
  color: #FFF;
  display: block;
}

#todos ul.todo-list li .users-list li {
  padding: 5px 15px;
  border: none;
  cursor: pointer;
  font-size: .7rem;
}

#todos ul.todo-list li .users-list li:hover {
  background-color: #333;
}

#todos ul.email-list {
  columns: 2;
}

#todos ul.email-list li {
  font-size: .7rem;
  color: #777;
  padding: 5px 0;
}

#todos .form-item.assign-to h5 {
  display: inline;
}

#todos cite {
  font-size: .6rem;
  color: #888;
}

#todos form input[type='submit'], #todos form button, #todos form input[type='cancel'] {
  margin-top: 10px;
  margin-bottom: 50px;
  border: none;
  padding: 5px 10px;
  background-color: #0A80FF;
  color: #fff;
  margin-right: 20px;
  cursor: pointer;
}

#todos form input[type='cancel'] {
  background: transparent;
  border: 1px solid;
  color: #0A80FF;
}

#todos form .buttons {
  margin-top: 20px;
}

#todos h4.todo-button, #todos h4.column-header {
  margin: 0;
  display: inline-block;
  font-size: .6rem;
  color: #aaa;
  cursor: pointer;
}

#todos h3 {
  font-size: 1.2rem;
  margin: 1rem 0;
  border-bottom: 2px solid;
}

#todos .todo-holder {
  position: fixed;
  bottom: auto;
  width: 40%;
  top: 0;
  right: 0;
  height: 100vh;
  background: rgba(250, 250, 250, 0.95);
  transition: 0.6s;
  -khtml-transform: translateX(100%);
  transform: translateX(100%);
  padding: 70px 0px;
  padding-right: 0;
}

#todos .todo-holder .todo-column {
  width: 100%;
}

#todos .form-content {
  visibility: hidden;
  max-height: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  -ms-opacity: 0;
  -o-opacity: 0;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.6s 0.2s;
}

#todos .add-button {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 1rem 0;
  color: #777;
  cursor: pointer;
}

#todos .add-todo-button {
  margin-right: 20px;
  border-radius: 16px;
  background: #0A80FF;
  width: 30px;
  height: 30px;
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

#todos .add-todo-button:after, #todos .add-todo-button:before {
  display: block;
  color: #FFF;
  cursor: pointer;
  content: "";
  width: 10px;
  height: 1px;
  position: absolute;
  background-color: #FFF;
}

#todos .add-todo-button:after {
  width: 1px;
  height: 10px;
}

#todos .todo-form-holder.open .add-button {
  display: none;
}

#todos .todo-form-holder.open .add-todo-button:after {
  content: "";
  display: none;
}

#todos .todo-form-holder.open .form-content {
  visibility: visible;
  max-height: 750px;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

#todos .todo-content-holder {
  max-height: calc(100vh - 100px);
  overflow: scroll;
  padding: 0 50px;
}

#todos.has-todos h4.todo-button {
  color: #d6002a;
}

#todos.show h4.todo-button {
  font-size: .8rem;
  position: absolute;
}

#todos.show h4.column-header {
  font-size: .8rem;
}

#todos.show .todo-holder {
  -khtml-transform: translateX(0);
  transform: translateX(0);
}
/*# sourceMappingURL=todos.css.map */