From 4f7012d53c56150e0044fcbaa67527c585b00a03 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 21 Jan 2014 02:43:21 -0500 Subject: [PATCH] refactor(style) .left, .right -> .panel-left, .panel-right --- cloudcmd.js | 4 ++-- css/style.css | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cloudcmd.js b/cloudcmd.js index 2255df2f..e7ba9755 100644 --- a/cloudcmd.js +++ b/cloudcmd.js @@ -276,8 +276,8 @@ else { p.name = INDEX_PATH, lPanel = CloudFunc.buildFromJSON(pJSON, FileTemplate, PathTemplate, LinkTemplate), - lList = '
' + lPanel + '
' + - '
' + lPanel + '
'; + lList = '
' + lPanel + '
' + + '
' + lPanel + '
'; main.sendResponse(p, indexProcessing({ additional : lList, diff --git a/css/style.css b/css/style.css index 1137c84d..b4bef130 100644 --- a/css/style.css +++ b/css/style.css @@ -31,7 +31,7 @@ body { background-color:white; } -.fm, .left>li, .right>li, .path, .fm-header, +.fm, .panel-left>li, .panel-right>li, .path, .fm-header, .mini-icon, .name, .size, .owner, .mode, .keyspanel, .cmd-button { -webkit-user-select : none; -moz-user-select : none; @@ -167,7 +167,7 @@ body { font-weight: bold; } -.left { +.panel-left { float:left; } @@ -180,7 +180,7 @@ body { color: rgb(254,159,224); } -.right { +.panel-right { float:right; } .panel { @@ -323,7 +323,7 @@ a:hover, a:active { width:94%; } /* если правая панель не помещаеться - прячем её */ - .right, .cmd-button#f5, .cmd-button#f6 { + .panel-right, .cmd-button#f5, .cmd-button#f6 { display: none; } }