123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) 2014-2016, Jupyter Development Team.
- |
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-Dialog {
- position: absolute;
- z-index: 10000;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- top: 0px;
- left: 0px;
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- background: rgba(0,0,0,0.25);
- color: var(--jp-1st-ui-font-color);
- }
- .jp-Dialog-content {
- margin-left: auto;
- margin-right: auto;
- background: #FAFAFA;
- padding: 24px;
- width: 300px;
- box-sizing: border-box;
- box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.5);
- word-wrap: break-word;
- }
- .jp-Dialog-header {
- padding-bottom: 12px;
- font-size: 18px;
- color: #616161;
- }
- .jp-Dialog-body {
- font-size: 15px;
- background: #FAFAFA;
- }
- .jp-Dialog-bodyContent {
- font-size: 15px;
- outline: none;
- margin-bottom: 12px;
- }
- .jp-Dialog-footer {
- margin-top: 24px;
- }
- .jp-Dialog-title {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .jp-Dialog-button {
- font-size: 15px;
- border: none;
- min-width: 120px;
- max-width: 120px;
- text-transform: uppercase;
- line-height: 38px;
- border-radius: 2px;
- outline: none;
- padding: 0px;
- }
- .jp-Dialog-okButton {
- background: var(--jp-1st-branch-color);
- color: white;
- }
- .jp-Dialog-cancelButton {
- background: #9E9E9E;
- margin-right: 12px;
- color: white;
- }
- .jp-Dialog-inputWrapper {
- padding: 7px;
- background: white;
- width: 252px;
- box-sizing: border-box;
- border: var(--jp-borderWidth) solid var(--jp-1st-borderColor);
- border-radius: 2px;
- margin-bottom: 12px;
- }
- .jp-Dialog-input {
- font-size: 15px;
- color: #676767;
- width: 100%;
- outline: none;
- border: none;
- }
- .jp-Dialog-selectWrapper {
- padding-top: 6px;
- padding-bottom: 6px;
- background: white;
- width: 252px;
- box-sizing: border-box;
- border: var(--jp-borderWidth) solid var(--jp-1st-borderColor);
- border-radius: 2px;
- margin-bottom: 12px;
- }
- .jp-Dialog-select {
- font-size: 15px;
- background: white;
- color: #676767;
- width: 100%;
- outline: none;
- border: none;
- }
|