|
@@ -8,11 +8,36 @@
|
|
<script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
|
|
<script type="text/javascript" src="../../script/semantic/semantic.min.js"></script>
|
|
<script type="text/javascript" src="../../script/ao_module.js"></script>
|
|
<script type="text/javascript" src="../../script/ao_module.js"></script>
|
|
<script type="text/javascript" src="../../script/applocale.js"></script>
|
|
<script type="text/javascript" src="../../script/applocale.js"></script>
|
|
|
|
+ <link rel="stylesheet" href="../../script/ao.css">
|
|
<style>
|
|
<style>
|
|
body{
|
|
body{
|
|
overflow:hidden;
|
|
overflow:hidden;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ #filePropertiesWindow{
|
|
|
|
+ background-color: var(--body_background);
|
|
|
|
+ color: var(--body_text);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #filePropertiesWindow td,.header,p,div{
|
|
|
|
+ color: var(--body_text) !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ #filePropertiesWindow input{
|
|
|
|
+ background-color: var(--body_background_secondary) !important;
|
|
|
|
+ color: var(--text_color) !important;
|
|
|
|
+ font-size: 1.2em;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .small.basic.white.fluid.button{
|
|
|
|
+ border: 1px solid var(--text_color_secondary);
|
|
|
|
+ color: var(--text_color_secondary) !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .small.basic.white.fluid.button:hover{
|
|
|
|
+ background-color: var(--body_background_active) !important;
|
|
|
|
+ }
|
|
|
|
+
|
|
</style>
|
|
</style>
|
|
</head>
|
|
</head>
|
|
<body id="filePropertiesWindow">
|
|
<body id="filePropertiesWindow">
|
|
@@ -27,9 +52,9 @@
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
- <button style="display:none;" class="ui small blue fluid button singleFileOnly" onclick="changeDefaultWebApp();" locale="button/changeDefault">Change Default WebApp</button>
|
|
|
|
- <button style="display:none; margin-top: 4px;" class="ui small fluid button singleFileOnly" onclick="viewVersionHistory();" locale="button/versionHistory">View Version History</button>
|
|
|
|
- <button style="margin-top: 4px;" class="ui small fluid button linuxonly" onclick="openFilePermissionPanel();" locale="button/changeFilePermission">Change File Permissions</button>
|
|
|
|
|
|
+ <button style="display:none;" class="ui small white basic fluid button singleFileOnly" onclick="changeDefaultWebApp();"><i class="ui external square alternate icon blue"></i><span locale="button/changeDefault">Change Default WebApp</span></button>
|
|
|
|
+ <button style="display:none; margin-top: 4px;" class="ui small basic white fluid button singleFileOnly" onclick="viewVersionHistory();"><i class="ui undo green icon"></i><span locale="button/versionHistory">View Version History</span></button>
|
|
|
|
+ <button style="margin-top: 4px;" class="ui small basic white fluid button linuxonly" onclick="openFilePermissionPanel();" locale="button/changeFilePermission">Change File Permissions</button>
|
|
<br>
|
|
<br>
|
|
</div>
|
|
</div>
|
|
<div id="filesizeLoader" class="ui active dimmer">
|
|
<div id="filesizeLoader" class="ui active dimmer">
|
|
@@ -97,9 +122,9 @@
|
|
fpw_loadPreference("file_explorer/theme",function(data){
|
|
fpw_loadPreference("file_explorer/theme",function(data){
|
|
if (data.error === undefined){
|
|
if (data.error === undefined){
|
|
if (data == "darkTheme"){
|
|
if (data == "darkTheme"){
|
|
- fpw_toggleDarkTheme();
|
|
|
|
|
|
+ $("body").addClass("darkTheme");
|
|
}else{
|
|
}else{
|
|
- //White theme. Do nothing
|
|
|
|
|
|
+ $("body").addClass("whiteTheme");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|