This is an automated email from the ASF dual-hosted git repository.
solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git
The following commit(s) were added to refs/heads/master by this push:
new cc5fe25 [OPENMEETINGS-2589] upload fil icon is updated
cc5fe25 is described below
commit cc5fe257ae2460cb5b0111fa74e65ef01ee70d6d
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Thu Mar 11 10:26:42 2021 +0700
[OPENMEETINGS-2589] upload fil icon is updated
---
.../org/apache/openmeetings/web/common/tree/FileTreePanel.java | 2 +-
openmeetings-web/src/main/webapp/css/raw-tree.css | 7 +++++++
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/tree/FileTreePanel.java
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/tree/FileTreePanel.java
index 557e8e5..abf1b7d 100644
---
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/tree/FileTreePanel.java
+++
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/tree/FileTreePanel.java
@@ -90,7 +90,7 @@ import
de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesome5I
public abstract class FileTreePanel extends Panel {
private static final long serialVersionUID = 1L;
private static final String BASE_CLASS = " om-icon big clickable";
- private static final String UPLOAD_CLASS = "add" + BASE_CLASS + " " +
ALIGN_LEFT;
+ private static final String UPLOAD_CLASS = "upload" + BASE_CLASS + " "
+ ALIGN_LEFT;
private static final String CREATE_DIR_CLASS = "folder-create" +
BASE_CLASS + " " + ALIGN_LEFT;
private static final String TRASH_CLASS = "trash" + BASE_CLASS + " " +
ALIGN_RIGHT;
private static final String DISABLED_CLASS = " disabled";
diff --git a/openmeetings-web/src/main/webapp/css/raw-tree.css
b/openmeetings-web/src/main/webapp/css/raw-tree.css
index dd90f4d..8d61614 100644
--- a/openmeetings-web/src/main/webapp/css/raw-tree.css
+++ b/openmeetings-web/src/main/webapp/css/raw-tree.css
@@ -216,3 +216,10 @@
white-space: pre;
margin: 0;
}
+.upload.om-icon {
+ margin-top: 0;
+}
+.upload.om-icon::before {
+ content: '\f574';
+ padding: 0 7px;
+}