123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) 2014-2017, Jupyter Development Team.
- |
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- button.jp-mod-styled {
- font-size: var(--jp-ui-font-size1);
- color: var(--jp-ui-font-color0);
- border: none;
- box-sizing: border-box;
- text-align: center;
- line-height: 32px;
- height: 32px;
- padding: 0px 12px;
- letter-spacing: 0.8px;
- outline: none;
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- }
- input.jp-mod-styled {
- background: var(--jp-input-background);
- height: 28px;
- box-sizing: border-box;
- border: var(--jp-border-width) solid var(--jp-border-color1);
- padding-left: 7px;
- padding-right: 7px;
- font-size: var(--jp-ui-font-size2);
- color: var(--jp-ui-font-color0);
- outline: none;
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- }
- input.jp-mod-styled:focus {
- border: var(--jp-border-width) solid var(--md-blue-500);
- box-shadow: inset 0 0 4px var(--md-blue-300);
- }
- input.jp-FileDialog-Checkbox {
- position: relative;
- cursor: pointer;
- background: none;
- border: none;
- width: 13px;
- height: 13px;
- margin-top: 35px;
- margin-right: 10px;
- top: 5px;
- left: 0px;
- }
- input.jp-FileDialog-Checkbox:focus {
- border: none;
- box-shadow: none;
- }
- input.jp-FileDialog-Checkbox:before {
- content: '';
- display: block;
- position: absolute;
- width: 13px;
- height: 13px;
- top: 0;
- left: 0;
- background-color: #e9e9e9;
- }
- input.jp-FileDialog-Checkbox:checked:before {
- content: '';
- display: block;
- position: absolute;
- width: 13px;
- height: 13px;
- top: 0;
- left: 0;
- background-color: #1e80ef;
- }
- input.jp-FileDialog-Checkbox:checked:after {
- content: '';
- display: block;
- width: 3px;
- height: 7px;
- border: solid white;
- border-width: 0 2px 2px 0;
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
- position: absolute;
- top: 1px;
- left: 4px;
- }
- .jp-select-wrapper {
- display: flex;
- position: relative;
- flex-direction: column;
- padding: 1px;
- background-color: var(--jp-layout-color1);
- height: 28px;
- box-sizing: border-box;
- margin-bottom: 12px;
- }
- .jp-select-wrapper.jp-mod-focused select.jp-mod-styled {
- border: var(--jp-border-width) solid var(--jp-input-active-border-color);
- box-shadow: var(--jp-input-box-shadow);
- background-color: var(--jp-input-active-background);
- }
- select.jp-mod-styled:hover {
- background-color: var(--jp-layout-color1);
- cursor: pointer;
- color: var(--jp-ui-font-color0);
- background-color: var(--jp-input-hover-background);
- box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
- }
- select.jp-mod-styled {
- flex: 1 1 auto;
- height: 32px;
- width: 100%;
- font-size: var(--jp-ui-font-size2);
- background: var(--jp-input-background);
- color: var(--jp-ui-font-color0);
- padding: 0 25px 0 8px;
- border: var(--jp-border-width) solid var(--jp-input-border-color);
- border-radius: 0px;
- outline: none;
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- }
|