ProjectAccess: increase font sizes for project rights

The UI for editing a project's permissions contains a button 'Add
Reference' and a drop down menu 'Add Permission...'. Both UI
elements have their font sizes set to 80%. While this will
probably work for monitors with a rather low display resolution
it causes the text to be uneligible for displays with a higher
resolution as they are way too small.

Fix the issue by removing the extra CSS related to the font size
for both elements.

Change-Id: I050030a9671dc4e9da2c3ab797625ac532cbcc45
This commit is contained in:
Patrick Steinhardt
2016-03-14 17:33:37 +01:00
parent a7eb5d93f2
commit cf73d023d9
2 changed files with 1 additions and 7 deletions

View File

@@ -88,9 +88,6 @@ limitations under the License.
.addContainer:hover {
background-color: selectionColor;
}
.addSelector {
font-size: 80%;
}
.deleteIcon {
position: absolute;
@@ -139,9 +136,7 @@ limitations under the License.
ui:field='permissionContainer'
styleName='{style.permissionList}'/>
<div ui:field='addContainer' class='{style.addContainer}'>
<g:ValueListBox
ui:field='permissionSelector'
styleName='{style.addSelector}' />
<g:ValueListBox ui:field='permissionSelector'/>
</div>
</div>

View File

@@ -48,7 +48,6 @@ limitations under the License.
.addContainer {
margin-top: 5px;
font-size: 80%;
}
.addContainer:hover {
background-color: selectionColor;