mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-11 01:33:24 +01:00
fixing style stuffs
This commit is contained in:
parent
28660e3400
commit
4f1f111432
@ -13,7 +13,7 @@ var BootstrapDialog = new Class({
|
||||
initialize: function (title, options) {
|
||||
this.setOptions(options);
|
||||
this.options.onRemoveClickData.dialog = this;
|
||||
this._native = $('<div class="modal fade"></div>').append('<div class="modal-dialog" style="margin:150px auto"></div>');
|
||||
this._native = $('<div class="modal fade"></div>').append('<div class="modal-dialog"></div>');
|
||||
var content = $('<div class="modal-content"></div>');
|
||||
content.on('keydown', function(event) {
|
||||
event.stopPropagation();
|
||||
|
@ -30,7 +30,7 @@ mindplot.widget.LinkEditor = new Class({
|
||||
errorMessage: true,
|
||||
onRemoveClickData: {model: this._model}
|
||||
});
|
||||
this.css({width:"600px"});
|
||||
this.css({margin:"150px auto"});
|
||||
var panel = this._buildPanel(model);
|
||||
this.setContent(panel);
|
||||
},
|
||||
|
@ -29,7 +29,7 @@ mindplot.widget.NoteEditor = new Class({
|
||||
removeButton: true,
|
||||
onRemoveClickData: {model: this._model}
|
||||
});
|
||||
this.css({width:"600px"});
|
||||
this.css({margin:"150px auto"});
|
||||
var panel = this._buildPanel(model);
|
||||
this.setContent(panel);
|
||||
},
|
||||
|
@ -23,7 +23,6 @@
|
||||
|
||||
<script type="text/javascript" language="javascript" src="js/jquery.timeago.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="js/jquery.timeago.${locale}.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="css/pageHeaders.css"/>
|
||||
|
||||
<body>
|
||||
<div style="padding:10px">
|
||||
|
@ -20,7 +20,7 @@
|
||||
color: #000000;
|
||||
}
|
||||
.btn-header:hover {
|
||||
background-color: #eee;
|
||||
background-color: #C8E2DF;
|
||||
}
|
||||
.WelcomeHeader {
|
||||
position: relative;
|
||||
|
@ -5,4 +5,4 @@
|
||||
<%
|
||||
request.setAttribute("principal", com.wisemapping.security.Utils.getUser());
|
||||
%>
|
||||
<%@include file="/jsp/style.jsp" %>
|
||||
|
||||
|
@ -15,22 +15,18 @@
|
||||
}
|
||||
|
||||
#collabEmails {
|
||||
width: 250px;
|
||||
width: 325px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#roleBtn {
|
||||
margin: 0 10px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
#addMessageLink,#roleBtn a {
|
||||
padding-left: 20px;
|
||||
color: #428bca;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#addBtn {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
#roleBtn a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#collabMessage {
|
||||
@ -58,7 +54,7 @@
|
||||
|
||||
<p><strong><spring:message code="ADD_PEOPLE"/>:</strong></p>
|
||||
|
||||
<input type="text" id="collabEmails" name="collabEmails"
|
||||
<input type="text" id="collabEmails" name="collabEmails" class="form-control"
|
||||
placeholder="<spring:message code="COLLABORATORS_SEPARATED_BY_COMA"/>"/>
|
||||
|
||||
<div class="btn-group" id="roleBtn">
|
||||
@ -74,9 +70,9 @@
|
||||
</div>
|
||||
<div style="margin-top: 10px;">
|
||||
<p><strong><spring:message code="EMAIL_NOTIFICATION_MESSAGE"/></strong> - <a href="#"
|
||||
id="addMessageLink"><spring:message
|
||||
id="addMessageLink" style="padding-left: 0px"><spring:message
|
||||
code="ADD_MESSAGE"/></a></p>
|
||||
<textarea cols="4" id="collabMessage" placeholder="<spring:message code="OPTIONAL_CUSTOM_MESSAGE"/>">
|
||||
<textarea cols="4" id="collabMessage" class="form-control" placeholder="<spring:message code="OPTIONAL_CUSTOM_MESSAGE"/>">
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
@ -151,7 +147,7 @@ function addCollaboration(email, role, changeType) {
|
||||
} else {
|
||||
rowStr = '<tr data-collab=' + email + ' data-role="' + role + '">\
|
||||
<td>' + email + ' (<spring:message code="YOU"/>)</td>\
|
||||
<td><button class="btn btn-secondary">' + messages[role] + '</button></td>\
|
||||
<td><button class="btn btn-secondary" style="float: right">' + messages[role] + '</button></td>\
|
||||
<td></td>\
|
||||
</tr>';
|
||||
tableElem.append(rowStr);
|
||||
|
@ -1,11 +0,0 @@
|
||||
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
h2 {
|
||||
font-size: 160%;
|
||||
color: #8e9181;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user