Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shall we call this "taking the trash out" ? #39

Merged
merged 2 commits into from
Dec 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 37 additions & 75 deletions css/helpdesk.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/**********************************
* General stuff used all around the helpdesk *
***********************************/

/* SimpleDesk icons */
.shd_smallicon
{
Expand All @@ -19,11 +18,6 @@
position: relative;
top: 3px;
}
.shd_icon_fullhead
{
position: relative;
top: 9px;
}
.shd_tinyicon
{
width: 9px;
Expand All @@ -35,11 +29,6 @@
margin-top: -3px;
}

.shd_nowrap
{
white-space: nowrap;
}

.shd_no_margin
{
margin: 0;
Expand All @@ -50,24 +39,6 @@
border-bottom: 0;
}

/**********************************
* The ticket listings *
***********************************/
.shd_ticketlist
{
width: 100%;
border: solid #BBBBBB;
border-width: 1px 1px 0;
}
.shd_ticketlist td
{
padding: 5px;
border-bottom: 1px solid #AFAFAF;
}
.shd_noticket
{
text-align: center;
}
.shd_staffresources ul
{
list-style-type: none;
Expand All @@ -79,12 +50,10 @@
margin-bottom: 3px;
}

.shd_gototicket
{
.shd_gototicket {
display: block;
float: right;
margin-left: 1em;
white-space: nowrap;
}

.shd_assignees
Expand Down Expand Up @@ -150,12 +119,11 @@ h3.ticketheader img
.shd_ticket_side_column
{
float: left;
width: 235px;
width: 20%;
margin-right: 20px;
padding: 5px;
}
.shd_ticketdetails
{
min-height: 280px;
.shd_ticketdetails {
overflow: auto;
float: left;
width: 100%;
Expand All @@ -173,12 +141,7 @@ h3.ticketheader img
float: left;
width: 100%;
}
.shd_ticket_side_column ul
{
list-style-type: none;
padding-left: 0;
margin: 0;
}

.shd_ticket_side_column li
{
line-height: 1.8em;
Expand All @@ -189,12 +152,8 @@ h3.ticketheader img
{
min-height: 250px;
}
.shd_ticket_description
{
padding-top: 9px;
padding-bottom: 45px;
.shd_ticket_description {
margin-left: 260px;
min-height: 200px;
}

#shd_ticket_text
Expand Down Expand Up @@ -347,20 +306,6 @@ h3.ticketheader img
}

/* Show tickets */
.shd_description
{
border: 1px solid #bbb;
}
.shd_windowbg
{
background: #f0f4f7 none repeat scroll 0 0;
border: 1px solid #ddd;
box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
margin: 0;
overflow: auto;
padding: 10px 16px;
}
.shd_showtickets
{
height: 15px;
Expand Down Expand Up @@ -390,11 +335,6 @@ h3.ticketheader img
/**********************************
* Ticket replies *
***********************************/
.shd_reply
{
padding-bottom: 32px;
padding-top: 12px;
}
.shd_posterinfo
{
width: 14em;
Expand Down Expand Up @@ -483,10 +423,6 @@ h3.ticketheader img
margin-left: -8px;
margin-right: 3px;
}
.shd_attachmentbox
{
padding: 10px;
}
.shd_attachmentcolumn
{
margin-right: 20px;
Expand Down Expand Up @@ -588,9 +524,35 @@ h3.ticketheader img
border-right: none;
}

ul.shd_profile_nav_list, ul.shd_profile_nav_inline
{
/* Webkit's default stylesheet also, just for giggles, adds margin-before and margin-after to lists. */
-webkit-margin-before: 0;
-webkit-margin-after: 0;
/* I'm not sure about the above, I'll rewrite them later */
.bot_page {
border: 1px solid #DDD;
border-top: none;
}
#ticket_log_header {
clear: both;
}

/* Urgency stuff */
.generic_icons.urgency_increase {
background-position: -161px -5px;
}
.generic_icons.urgency_decrease {
background-position: -213px -5px;
}

/* We need some adjustments */
dl.stats dd span, dl.stats dt span {
position: relative;
}

/* We need something like winfo in helpdesk */
.noup {
border-top-left-radius: 0;
border-top-right-radius: 0;
margin: 0 !important;
}

.shd_icon_fullhead {
position: relative;
}
80 changes: 4 additions & 76 deletions css/helpdesk_admin.css
Original file line number Diff line number Diff line change
@@ -1,45 +1,3 @@
#sd_live_news
{
width: 64%;
font-size: 0.85em;
}
#sd_live_news .cat_bar
{
margin-bottom: 0;
}
#sd_live_news .windowbg
{
margin-top: 0;
height: 23.5em;
}
#sd_live_news div.content
{
padding: 0;
}
#sd_live_news div.content dl
{
padding: 0.5em 0 0 0.5em;
}

#sd_supportVersionsTable
{
width: 34%;
}
#sd_supportVersionsTable .cat_bar
{
margin-bottom: 0;
}
#sd_supportVersionsTable .windowbg
{
margin-top: 0;
height: 20em;
}

#sd_version_details
{
overflow: auto;
height: 16.4em;
}
#sdAnnouncements
{
height: 21.6em;
Expand Down Expand Up @@ -74,11 +32,6 @@
float: right;
margin-top: 8px;
}
.shd_actionloginfo
{
margin-bottom: 0;
border-bottom: 0;
}
.shd_admin_leftcolumn
{
width: 74%;
Expand All @@ -105,11 +58,6 @@
{
margin-bottom: 0;
}
h3.sd_no_margin
{
margin-bottom: 0px;
padding-bottom: 3px;
}

.disabled
{
Expand All @@ -119,12 +67,6 @@ h3.sd_no_margin
.shd_credits_names
{
margin-left: 57px;
margin-bottom: 12px;
}

.shd_credits_names hr
{
margin: 0;
}

.shd_valign_top
Expand Down Expand Up @@ -281,26 +223,12 @@ h3 a.permcollapse img

#error_log td.half_width
{
vertical-align: top;
}

/* SMF 2.1 no longer uses description, but we make use of it still! */
.sd_description
{
background: #F8F8F8;
overflow: auto;
padding-bottom: .5em;
border: 1px solid #ddd;
border-top: none;
margin: 0 0 10px 0;
padding: 12px 9px 8px 9px;
box-sizing: border-box;
}

/* Plugin switch inmage */
vertical-align: top;
}

/* Plugin switch inmage */
.features_switch
{
float: right;
margin: 0.2em 1em 1em;
}
}
Loading