OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
NLEditor
/
assets
/
css
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
04/30/2025 06:15:43 AM
rwxr-xr-x
📄
addText.css
958 bytes
04/30/2025 06:15:43 AM
rw-r--r--
📄
styles.css
13.31 KB
04/30/2025 06:15:43 AM
rw-r--r--
📄
textEdit.css
2.2 KB
04/30/2025 06:15:43 AM
rw-r--r--
Editing: textEdit.css
Close
/* Text toolbar styles */ .text-toolbar { background-color: #f8f9fa; border: 1px solid #ddd; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); padding: 12px; width: 200px; } .text-toolbar label { display: block; margin-bottom: 3px; font-size: 12px; font-weight: 500; color: #555; } .text-toolbar select, .text-toolbar input { margin-bottom: 8px; border: 1px solid #ced4da; border-radius: 4px; padding: 5px; font-size: 14px; } .text-toolbar button { border: 1px solid #ced4da; background-color: #fff; color: #333; cursor: pointer; transition: all 0.2s ease; } .text-toolbar button:hover { background-color: #e9ecef; } .text-toolbar button.active { background-color: #007bff; color: #fff; border-color: #007bff; } /* Editable element styles */ .editable-element { position: absolute; min-width: 100px; min-height: 30px; padding: 5px; cursor: move; z-index: 100; background-color: transparent !important; border: 1px dashed #ccc; transition: border 0.2s ease; } .editable-element:hover { border: 1px dashed #007bff; } .editable-element:focus { outline: none; border: 1px dashed #007bff; box-shadow: 0 0 3px rgba(0, 123, 255, 0.5); } /* Add visual feedback for dragging */ .ui-draggable-dragging { opacity: 0.8; box-shadow: 0 5px 15px rgba(0,0,0,0.2); } /* Add resize handles */ .editable-element .ui-resizable-handle { background-color: #007bff; border: 1px solid #fff; width: 8px; height: 8px; } /* Add a button to add text to the main interface */ #addTextMainBtn { position: fixed; left: 20px; top: 80px; background-color: #007bff; color: white; border: none; border-radius: 4px; padding: 8px 12px; font-size: 14px; cursor: pointer; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } #addTextMainBtn:hover { background-color: #0069d9; } /* Style for the text element when selected */ .editable-element.selected { border: 2px solid #007bff; box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }