1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * jquery.portlet 1.1.2
- *
- * Copyright (c) 2012
- * 咖啡兔 (http://www.kafeitu.me)
- *
- * Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
- * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
- *
- * See Detail: http://www.kafeitu.me/jquery-ui-portlet.html
- */
- .ui-portlet-column {
- float: left;
- padding-bottom: 100px;
- }
- .ui-portlet-header {
- padding: .4em 0.7em
- }
- .ui-portlet-header .ui-icon {
- float: right;
- }
- .ui-portlet-item {
- margin: 0 1em 1em 0;
- }
- .ui-portlet-content {
- padding: 0.3em;
- overflow-y:auto;
- }
- .ui-portlet-header .ui-portlet-header-icon {
- float: left;
- margin: 0 0.2em 0 -0.5em;
- }
- .ui-sortable-placeholder {
- border: 1px dotted black;
- visibility: visible !important;
- height: 50px !important;
- }
- .ui-sortable-placeholder * {
- visibility: hidden;
- }
|