123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- <?php
- /**
- * CSS form/input elements
- *
- * @package Elgg.Core
- * @subpackage UI
- */
- ?>
- /* <style> /**/
- /* ***************************************
- Form Elements
- *************************************** */
- fieldset > div {
- margin-bottom: 15px;
- }
- fieldset > div:last-child {
- margin-bottom: 0;
- }
- .elgg-form-alt > fieldset > .elgg-foot {
- border-top: 1px solid #CCC;
- padding: 10px 0;
- }
- label {
- font-weight: bold;
- color: #333;
- font-size: 110%;
- }
- label.elgg-state-disabled {
- opacity: 0.6;
- }
- input, textarea {
- border: 1px solid #ccc;
- color: #666;
- font: 120% Arial, Helvetica, sans-serif;
- padding: 5px;
- width: 100%;
- border-radius: 5px;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- input[type=email]:focus,
- input[type=password]:focus,
- input[type=text]:focus,
- input[type=url]:focus,
- textarea:focus {
- border: solid 1px #4690d6;
- background: #e4ecf5;
- color:#333;
- /* We remove outlines from specific input types so we can leave the browser
- defaults (like glows) for everything else */
- outline: 0 none;
- }
- .elgg-longtext-control {
- float: right;
- margin-left: 14px;
- font-size: 80%;
- cursor: pointer;
- }
- .elgg-input-access {
- margin:5px 0 0 0;
- }
- input[type="checkbox"],
- input[type="radio"] {
- margin:0 3px 0 0;
- padding:0;
- border:none;
- border-radius:0;
- width:auto;
- }
- .elgg-input-checkboxes.elgg-horizontal li,
- .elgg-input-radios.elgg-horizontal li {
- display: inline;
- padding-right: 10px;
- }
- .elgg-form-login, .elgg-form-account {
- max-width: 475px;
- margin: 0 auto;
- }
- /* ***************************************
- FRIENDS PICKER
- *************************************** */
- .friends-picker-main-wrapper {
- margin-bottom: 15px;
- }
- .friends-picker-container h3 {
- font-size:4em !important;
- text-align: left;
- margin:10px 0 20px !important;
- color:#999 !important;
- background: none !important;
- padding:0 !important;
- }
- .friends-picker .friends-picker-container .panel ul {
- text-align: left;
- margin: 0;
- padding:0;
- }
- .friends-picker-wrapper {
- margin: 0;
- padding:0;
- position: relative;
- width: 730px;
- }
- .friends-picker {
- position: relative;
- overflow: hidden;
- margin: 0;
- padding:0;
- width: 730px;
- height: auto;
- background-color: #dedede;
- border-radius: 8px;
- }
- .friendspicker-savebuttons {
- background: white;
- border-radius: 8px;
- margin:0 10px 10px;
- }
- .friends-picker .friends-picker-container { /* long container used to house end-to-end panels. Width is calculated in JS */
- position: relative;
- left: 0;
- top: 0;
- width: 100%;
- list-style-type: none;
- }
- .friends-picker .friends-picker-container .panel {
- float:left;
- height: 100%;
- position: relative;
- width: 730px;
- margin: 0;
- padding:0;
- }
- .friends-picker .friends-picker-container .panel .wrapper {
- margin: 0;
- padding:4px 10px 10px 10px;
- min-height: 230px;
- }
- .friends-picker-navigation {
- margin: 0 0 10px;
- padding:0 0 10px;
- border-bottom:1px solid #ccc;
- }
- .friends-picker-navigation ul {
- list-style: none;
- padding-left: 0;
- }
- .friends-picker-navigation ul li {
- float: left;
- margin:0;
- background:white;
- }
- .friends-picker-navigation a {
- font-weight: bold;
- text-align: center;
- background: white;
- color: #999;
- text-decoration: none;
- display: block;
- padding: 0;
- width:20px;
- border-radius: 4px;
- }
- .tabHasContent {
- background: white;
- color:#333 !important;
- }
- .friends-picker-navigation li a:hover {
- background: #333;
- color:white !important;
- }
- .friends-picker-navigation li a.current {
- background: #4690D6;
- color:white !important;
- }
- .friends-picker-navigation-l, .friends-picker-navigation-r {
- position: absolute;
- top: 46px;
- text-indent: -9000em;
- }
- .friends-picker-navigation-l a, .friends-picker-navigation-r a {
- display: block;
- height: 40px;
- width: 40px;
- }
- .friends-picker-navigation-l {
- right: 48px;
- z-index:1;
- }
- .friends-picker-navigation-r {
- right: 0;
- z-index:1;
- }
- .friends-picker-navigation-l {
- background: url("<?php echo elgg_get_site_url(); ?>_graphics/friendspicker.png") no-repeat left top;
- }
- .friends-picker-navigation-r {
- background: url("<?php echo elgg_get_site_url(); ?>_graphics/friendspicker.png") no-repeat -60px top;
- }
- .friends-picker-navigation-l:hover {
- background: url("<?php echo elgg_get_site_url(); ?>_graphics/friendspicker.png") no-repeat left -44px;
- }
- .friends-picker-navigation-r:hover {
- background: url("<?php echo elgg_get_site_url(); ?>_graphics/friendspicker.png") no-repeat -60px -44px;
- }
- .friendspicker-savebuttons .elgg-button-submit,
- .friendspicker-savebuttons .elgg-button-cancel {
- margin:5px 20px 5px 5px;
- }
- .friendspicker-members-table {
- background: #dedede;
- border-radius: 8px;
- margin:10px 0 0;
- padding:10px 10px 0;
- }
- /* ***************************************
- AUTOCOMPLETE
- *************************************** */
- <?php //autocomplete will expand to fullscreen without max-width ?>
- .ui-autocomplete {
- position: absolute;
- cursor: default;
- z-index: 10000;
- }
- .elgg-autocomplete-item .elgg-body {
- max-width: 600px;
- }
- .ui-autocomplete {
- background-color: white;
- border: 1px solid #ccc;
- overflow: hidden;
- border-radius: 5px;
- }
- .ui-autocomplete .ui-menu-item {
- padding: 0px 4px;
- border-radius: 5px;
- }
- .ui-autocomplete .ui-menu-item:hover {
- background-color: #eee;
- }
- .ui-autocomplete a:hover {
- text-decoration: none;
- color: #4690D6;
- }
- .ui-autocomplete a.ui-state-hover {
- background-color: #eee;
- display: block;
- }
- /* ***************************************
- USER PICKER
- *************************************** */
- .elgg-user-picker-list li:first-child {
- border-top: 1px dotted #ccc;
- margin-top: 5px;
- }
- .elgg-user-picker-list > li {
- border-bottom: 1px dotted #ccc;
- }
- .elgg-user-picker.elgg-state-disabled > input,
- .elgg-user-picker.elgg-state-disabled > label {
- display: none;
- }
- .elgg-user-picker-remove {
- cursor: pointer;
- }
- /* ***************************************
- DATE PICKER
- **************************************** */
- .ui-datepicker {
- display: none;
- margin-top: 3px;
- background-color: white;
- border: 1px solid #0054A7;
- border-radius: 6px;
- overflow: hidden;
- box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
- }
- .ui-datepicker-inline {
- box-shadow: none;
- }
- .ui-datepicker-header {
- position: relative;
- background: #4690D6;
- color: white;
- padding: 2px 0;
- border-bottom: 1px solid #0054A7;
- }
- .ui-datepicker-header a {
- color: white;
- }
- .ui-datepicker-prev, .ui-datepicker-next {
- position: absolute;
- top: 5px;
- cursor: pointer;
- }
- .ui-datepicker-prev {
- left: 6px;
- }
- .ui-datepicker-next {
- right: 6px;
- }
- .ui-datepicker-title {
- line-height: 1.8em;
- margin: 0 30px;
- text-align: center;
- font-weight: bold;
- }
- .ui-datepicker-calendar {
- margin: 4px;
- }
- .ui-datepicker th {
- color: #0054A7;
- border: none;
- font-weight: bold;
- padding: 5px 6px;
- text-align: center;
- }
- .ui-datepicker td {
- padding: 1px;
- }
- .ui-datepicker td span, .ui-datepicker td a {
- display: block;
- padding: 2px;
- line-height: 1.2em;
- text-align: right;
- text-decoration: none;
- }
- .ui-datepicker-calendar .ui-state-default {
- border: 1px solid #ccc;
- color: #4690D6;;
- background: #fafafa;
- }
- .ui-datepicker-calendar .ui-state-hover {
- border: 1px solid #aaa;
- color: #0054A7;
- background: #eee;
- }
- .ui-datepicker-calendar .ui-state-active,
- .ui-datepicker-calendar .ui-state-active.ui-state-hover {
- font-weight: bold;
- border: 1px solid #0054A7;
- color: #0054A7;
- background: #E4ECF5;
- }
|