mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
46 lines
771 B
Plaintext
46 lines
771 B
Plaintext
#clone-popup
|
|
{
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background:rgba(0, 0, 0, 0.60);
|
|
}
|
|
|
|
#clone-popup > #clone-popup-inner-wrapper
|
|
{
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: -55px 0 0 -300px;
|
|
padding: 20px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
width: 560px;
|
|
height: 70px;
|
|
text-align: center;
|
|
background-color: white;
|
|
}
|
|
|
|
#clone-popup > #clone-popup-inner-wrapper > .btn-group
|
|
{
|
|
display: inline-block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#clone-popup > #clone-popup-inner-wrapper > .form-control
|
|
{
|
|
width: 95%
|
|
}
|
|
|
|
#clone-popup > #clone-popup-inner-wrapper > .form-control
|
|
{
|
|
display: inline-block;
|
|
}
|
|
|
|
#clone-popup > #clone-popup-inner-wrapper > .form-control:not(.visible)
|
|
{
|
|
display: none;
|
|
} |