forked from extern/egroupware
5917a70dcc
- Add wodocollabtexteditor library
73 lines
1.9 KiB
CSS
73 lines
1.9 KiB
CSS
/**
|
|
* Copyright (C) 2012-2014 KO GmbH <copyright@kogmbh.com>
|
|
*
|
|
* @licstart
|
|
* This file is part of WebODF.
|
|
*
|
|
* WebODF is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License (GNU AGPL)
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* WebODF is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with WebODF. If not, see <http://www.gnu.org/licenses/>.
|
|
* @licend
|
|
*
|
|
* @source: http://www.webodf.org/
|
|
* @source: https://github.com/kogmbh/WebODF/
|
|
*/
|
|
|
|
.webodfeditor-members {
|
|
width: 70px !important;
|
|
padding: 2px !important;
|
|
text-align: center !important;
|
|
background-color: gray !important;
|
|
border: none !important;
|
|
}
|
|
|
|
.webodfeditor-memberList .webodfeditor-memberListButton {
|
|
margin-top: 5px;
|
|
padding-top: 3px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 68px;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
background-color: black;
|
|
box-shadow: 0px 0px 5px rgb(90, 90, 90);
|
|
border: 1px solid black;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.webodfeditor-memberList .webodfeditor-memberListLabel {
|
|
color: white;
|
|
border-radius: 5px;
|
|
padding: 2px;
|
|
font-size: 8pt;
|
|
word-wrap: break-word;
|
|
text-align: center justify;
|
|
}
|
|
div.webodfeditor-memberListLabel[fullname]:before {
|
|
content: attr(fullname) "";
|
|
}
|
|
|
|
.webodfeditor-memberList img {
|
|
box-shadow: 0px 0px 5px rgb(90, 90, 90) inset;
|
|
background-color: rgb(200, 200, 200);
|
|
border-radius: 5px;
|
|
border: 2px solid;
|
|
height: 60px;
|
|
width: 60px;
|
|
display: block;
|
|
margin: auto;
|
|
}
|
|
|
|
.webodfeditor-memberList img:hover {
|
|
opacity: 0.9;
|
|
}
|