jupyterlab-emrys
Version:
A computational environment for Jupyter. Powered by Emrys
114 lines (88 loc) • 1.79 kB
CSS
/*-----------------------------------------------------------------------------
| Copyright (c) 2014-2016, Jupyter Development Team.
|
| Distributed under the terms of the Modified BSD License.
|----------------------------------------------------------------------------*/
.jp-Dialog {
background: rgba(0,0,0,0.25);
color: #757575;
}
.jp-Dialog-content {
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-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: #2196F3;
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: 1px solid #BDBDBD;
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: 1px solid #BDBDBD;
border-radius: 2px;
margin-bottom: 12px;
}
.jp-Dialog-select {
font-size: 15px;
background: white;
color: #676767;
width: 100%;
outline: none;
border: none;
}