123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- body {
- background-color:#FFFFFF;
- font: -webkit-small-control;
- width:250px;
- padding: 0px;
- margin: 0px;
- }
- /* ------------ BUTTONS ------------ */
- #top_buttons {
- padding-bottom: 15px;
- }
- #btn_save:focus, #btn_cancelSave:focus {
- outline: 0; /* Don't focus elements on load */
- }
- #btn_save, #btn_cancelSave, #btn_confirmSave {
- position: relative;
- vertical-align: top;
- width: 100%;
- height: 30px;
- padding: 0px;
- margin: 0px;
- color:#454545; /* font color */
- text-align: center;
- background: #EFF4FB;
- border: 0px;
- cursor: pointer;
- }
- #btn_cancelSave, #btn_confirmSave {
- height: 20px;
- width: 12%;
- }
- #btn_confirmSave {
- border-right: 2px solid white;
- border-left: 1px solid white;
- }
- #input_elements {
- margin: 0px;
- padding-top: 5px;
- padding-bottom: 1px;
- }
- #input_session {
- background-color: #FFFFFF;
- padding-top: 2px;
- margin: 0px;
- width: 73%;
- }
- #input_session:focus {
- background-color: #FFFFCB;
- outline: 0;
- }
- #btn_save:hover, #btn_confirmSave:hover {
- background-color: #6495DC;
- color: white;
- }
- #btn_save:disabled {
- background-color: #A3A3A3;
- color: black;
- }
- #btn_cancelSave:hover, .remove_cell:hover {
- background-color: #C13232;
- color:white;
- }
- .new_window_cell:hover {
- background-color: Purple; /* --------- CHANGE THIS ------- */
- color:white;
- }
- #container {
- min-height: 100%;
- position: relative;
- }
- /* ------------ ALERT ------------ */
- #msg_alert {
- text-align:center;
- padding-top: 5px;
- margin: 0px;
- font-style: italic;
- font-size: 10px;
- color: #696969;
- }
- /* ------------ TABLE ------------ */
- #table_container {
- margin: auto;
- overflow: auto;
- }
- .date {
- margin: 0px;
- padding:0px;
- font-style: italic;
- font-size: 9px;
- color: #CCCCCC;
- }
- tr:nth-child(even) {
- background-color: #FAFBFD;
- }
- tr > td {
- width: 100%;
- }
- tr:hover, tr:hover .date {
- background-color: #6495DC;
- color: white;
- cursor: pointer;
- }
- .session_cell {
- width: 180px;
- font-size: 12px;
- margin: 0px;
- }
- .ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- #table_container::-webkit-scrollbar-track
- {
- background-color: #FFFFFF;
- }
- #table_container::-webkit-scrollbar
- {
- width: 6px;
- }
- #table_container::-webkit-scrollbar-thumb
- {
- background-color: #EFF4FB;
- }
- .remove_session, .new_window_session {
- text-align: center;
- width: 28px;
- margin: 0px;
- cursor: pointer;
- }
|