Skip to content

Commit 6f612b5

Browse files
author
sunxingba
committed
Merge branch 'hotfix_modify_css_config'
修复添加自定义样式配置
2 parents 140b44b + 5dd1111 commit 6f612b5

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/target/
2+
*.class
3+
4+
# Mobile Tools for Java (J2ME)
5+
.mtj.tmp/
6+
7+
# Package Files #
8+
*.jar
9+
*.war
10+
*.ear
11+
*.mar
12+
13+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
14+
hs_err_pid*
15+
16+
# Ignore everything in this directory
17+
target
18+
.classpath
19+
.settings
20+
.project
21+
*.iml
22+
*.iws
23+
*.ipr
24+
.idea
25+
.vscode/
26+
.DS_Store

modules/org.wso2.carbon.ui_patch/src/main/resources/web/admin/layout/template.jsp

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
<title><tiles:getAsString name="title"/></title>
9292
<%}%>
9393
<link href="<%=globalCSS%>" rel="stylesheet" type="text/css" media="all"/>
94+
<link href="../admin/css/customizations.css" rel="stylesheet" type="text/css" media="all" />
9495
<%
9596
Object param = session.getAttribute("authenticated");
9697
if (param != null && (Boolean) param) {

0 commit comments

Comments
 (0)