2014-12-29 01:18:02 +00:00
|
|
|
/* sensible UI defaults for transaction views */
|
|
|
|
|
|
|
|
/* right-align labels */
|
2015-01-15 21:29:36 +00:00
|
|
|
td > label:not(.payment_type):not(.open_shop):not(.gnucash_csv) {
|
2014-12-29 01:18:02 +00:00
|
|
|
float: right;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
|
2015-01-28 04:30:42 +00:00
|
|
|
/* bold transaction type */
|
|
|
|
#trans_type_info {
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
2014-12-29 01:18:02 +00:00
|
|
|
/* make unimportant buttons into links */
|
|
|
|
input[value=Delete], input[name=date_fill] {
|
|
|
|
background:none!important;
|
|
|
|
border:none;
|
|
|
|
padding:0!important;
|
|
|
|
color: blue;
|
|
|
|
/*border is optional*/
|
|
|
|
/* border-bottom:1px solid blue; */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2015-02-06 06:24:18 +00:00
|
|
|
form[name=FormEdit] select:focus {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
select[name=transaction_type]:focus {
|
2014-12-29 01:18:02 +00:00
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
2015-01-10 07:54:12 +00:00
|
|
|
.editable_change {
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editable_change form {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2014-12-31 05:53:49 +00:00
|
|
|
/*
|
|
|
|
input[value=Save]:focus, input[value=Close]:focus {
|
|
|
|
background: green;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2014-12-30 16:39:31 +00:00
|
|
|
/* distinguish deposits */
|
2014-12-31 05:53:49 +00:00
|
|
|
.deposit, .deposit_calculator {
|
2014-12-30 16:39:31 +00:00
|
|
|
background-color: #FFDB58;
|
|
|
|
}
|
2014-12-29 01:18:02 +00:00
|
|
|
|
2014-12-30 16:39:31 +00:00
|
|
|
.deposit [type='checkbox'] {
|
|
|
|
display: none;
|
|
|
|
}
|
2015-01-15 21:29:36 +00:00
|
|
|
|
|
|
|
/* gnucash */
|
|
|
|
[name=gnucash_csv_year] {
|
|
|
|
width: 80px;
|
|
|
|
}
|
|
|
|
|
2015-04-02 20:15:59 +00:00
|
|
|
/* was 351 */
|
2015-01-15 21:29:36 +00:00
|
|
|
#gnucash_csv_range {
|
2015-04-02 20:15:59 +00:00
|
|
|
width: 496px;
|
2015-01-15 21:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#range_slider {
|
|
|
|
padding-top: 8px;
|
2015-01-17 10:28:10 +00:00
|
|
|
}
|
2015-01-26 18:52:16 +00:00
|
|
|
|
|
|
|
/* center error text by description when editing transactions */
|
|
|
|
[name=description], #description_error {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2015-04-02 20:15:59 +00:00
|
|
|
#slider_upper {
|
|
|
|
margin-left: 147px;
|
|
|
|
}
|
|
|
|
|
2015-01-26 18:52:16 +00:00
|
|
|
/* errors */
|
2015-01-29 07:32:02 +00:00
|
|
|
#current_shop > a, #date_error,
|
2015-01-26 18:52:16 +00:00
|
|
|
#transaction_start_error,
|
|
|
|
#sold_by_error, #sold_to_error,
|
2015-01-27 07:27:27 +00:00
|
|
|
#description_error, #check_number_error,
|
2015-01-26 18:52:16 +00:00
|
|
|
#payment_error, #payment_type_error,
|
2015-01-27 07:27:27 +00:00
|
|
|
#quantity_error, #anonymous_error {
|
2015-01-29 07:32:02 +00:00
|
|
|
color: red;
|
2015-12-27 19:40:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* for shop_log */
|
|
|
|
#shop_log td {
|
|
|
|
padding: 0px 10px 0px 10px;
|
2016-01-26 06:14:59 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 06:02:32 +00:00
|
|
|
/* for memberships */
|
|
|
|
#expired_membership {
|
|
|
|
color: orchid;
|
2017-07-17 20:38:23 +00:00
|
|
|
margin-left: 10px;
|
2017-07-17 06:02:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#paid_member {
|
|
|
|
color: blue;
|
2017-07-17 20:38:23 +00:00
|
|
|
margin-left: 10px;
|
2017-07-17 06:02:32 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 20:38:23 +00:00
|
|
|
/* for volunteers */
|
|
|
|
#volunteer_hours {
|
|
|
|
color: blueviolet;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
|
2017-07-24 01:25:57 +00:00
|
|
|
/* for stand time */
|
|
|
|
#stand_time_total {
|
|
|
|
color: green;
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
2017-07-17 20:38:23 +00:00
|
|
|
|
2017-07-27 18:47:16 +00:00
|
|
|
/* spinner for volunteer hour redemption */
|
2017-07-27 17:58:53 +00:00
|
|
|
#redeemable_hours {
|
|
|
|
display: none;
|
|
|
|
margin-left: 10px;
|
2017-07-27 18:47:16 +00:00
|
|
|
font-size: .9em;
|
|
|
|
width: 82px;
|
|
|
|
height: 23px;
|
2017-07-27 17:58:53 +00:00
|
|
|
}
|
2016-01-29 07:10:33 +00:00
|
|
|
|
2017-07-27 18:47:16 +00:00
|
|
|
.ui-spinner {
|
|
|
|
display: none;
|
|
|
|
margin-left: 10px;
|
|
|
|
width: 85px;
|
|
|
|
height: 26px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ui-widget input {
|
|
|
|
font-size: .9em;
|
2017-08-03 19:44:38 +00:00
|
|
|
}
|
|
|
|
|
2017-11-26 05:35:50 +00:00
|
|
|
#original_price, #membership_discount, #membership_discount_price, #volunteer_hours_to_membership_discount {
|
2017-08-03 19:44:38 +00:00
|
|
|
display: none;
|
2017-08-03 20:03:27 +00:00
|
|
|
color: blueviolet;
|
2017-10-19 05:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//.css({color: "#1b691e", textDecoration: "none", cursor: "crosshair"});
|
|
|
|
.shop_id a {
|
|
|
|
background-color: #1b691e;
|
|
|
|
cursor: crosshair;
|
|
|
|
text-decoration: none;
|
2017-07-27 18:47:16 +00:00
|
|
|
}
|