1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00

Added link selector interface to WYSIWYG editor

This commit is contained in:
Dan Brown
2016-09-01 20:36:22 +01:00
parent 56df64063d
commit 5b64358ef1
9 changed files with 163 additions and 39 deletions

View File

@@ -100,3 +100,13 @@ $button-border-radius: 2px;
}
}
.button[disabled] {
background-color: #BBB;
cursor: default;
&:hover {
background-color: #BBB;
cursor: default;
box-shadow: none;
}
}

View File

@@ -39,25 +39,28 @@
}
}
.popup-header {
.corner-button {
position: absolute;
top: 0;
right: 0;
margin: 0;
height: 40px;
border-radius: 0;
box-shadow: none;
}
.popup-header, .popup-footer {
display: block;
position: relative;
height: 40px;
.popup-close {
position: absolute;
top: 0;
right: 0;
margin: 0;
height: 40px;
border-radius: 0;
box-shadow: none;
}
.popup-title {
color: #FFF;
padding: 8px $-m;
}
}
#entity-selector-wrap .popup-body .form-group {
margin: 0;
}
.image-manager-body {
min-height: 60vh;
}