Skip to content

Commit

Permalink
refs #1770 : modified - invitation letter CSS.
Browse files Browse the repository at this point in the history
 * modified - menu icon (about) changed
 * modified - skin buttons are changed to CSS
  • Loading branch information
inureyes committed Mar 31, 2015
1 parent c534966 commit 2c3c881
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 29 deletions.
6 changes: 3 additions & 3 deletions interface/owner/network/teamblog/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,19 +339,19 @@ function Check_rev() {
<div id="letter-head">
<div id="receiver-line" class="line">
<label for="invitation_receiver"><?php echo _t('받는 사람'); ?></label>
<input type="text" id="invitation_receiver" class="input-text" name="text" value="<?php echo _t('이름&lt;이메일&gt; 혹은 이메일');?>" onclick="if(!this.selected) this.select();this.selected=true;" onblur="this.selected=false;" onkeydown="refreshReceiver(event)" />
<input type="text" id="invitation_receiver" class="input-text" name="text" value="<?php echo _t('이름&lt;이메일&gt; 혹은 이메일');?>" onclick="if(!this.selected) this.select();this.selected=true;" onblur="this.selected=false;" onkeydown="refreshReceiver(event);" />
</div>
</div>

<div id="letter-body">
<label for="invitation_comment"><?php echo _t('초대 메시지');?></label>
<textarea id="invitation_comment" cols="60" rows="3" name="textarea"><?php echo _f("%1님께서 블로그의 팀원으로 초대합니다",htmlspecialchars($user['name']));?></textarea>
<textarea id="invitation_comment" cols="70" rows="3" name="textarea"><?php echo _f("%1님께서 블로그의 팀원으로 초대합니다",htmlspecialchars($user['name']));?></textarea>
</div>

<div id="letter-foot">
<div id="sender-line" class="line">
<label for="invitation_sender"><?php echo _t('보내는 사람');?></label>
<input type="text" id="invitation_sender" class="input-text" name="text2" value="<?php echo htmlspecialchars(htmlspecialchars($user['name']).'<'.User::getEmail().'>');?>" />
<input type="text" id="invitation_sender" class="input-text" name="text2" value="<?php echo htmlspecialchars(htmlspecialchars($user['name']).'<'.User::getEmail().'>');?>" />
</div>
</div>
</dd>
Expand Down
2 changes: 1 addition & 1 deletion skin/admin/canon/menu_icons.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

/* Center */
#sub-menu-dashboard a:before { content: '\f0e4';}
#sub-menu-about a:before { content: '\f129';}
#sub-menu-about a:before { content: '\f05a';}

/* Entry */
#body-entry #sub-menu-entry a:before { content: '\f01c';}
Expand Down
42 changes: 23 additions & 19 deletions skin/admin/canon/network.css
Original file line number Diff line number Diff line change
Expand Up @@ -294,14 +294,9 @@ dl dd
#part-link-edit .button-box,
#part-link-category-edit .button-box
{
background-color : #F2F2F2;
background-image : url("./image/bg_link_button_box.png");
background-position : left top;
background-repeat : repeat-x;
clear : both;
margin : 0 auto 150px auto;
margin : 0 auto ;
padding : 20px 10px 20px 10px;
width : 680px;
}

#part-link-list .button-box .input-button,
Expand All @@ -320,16 +315,6 @@ dl dd

/* Xfn *******************************************************************************************/

#part-link-list .button-box
{
margin-top : -50px;
}

#part-link-list .button-box
{
margin : 0 auto 50px auto;
}

/* Team Blog **********************************************************************************/
#part-setting-account .button-box,
#part-setting-invite .button-box
Expand All @@ -339,6 +324,12 @@ dl dd
margin-top : 10px;
}

#part-setting-account .data-inbox,
#part-setting-invite .data-inbox
{
margin :0 auto;
}

#part-setting-account .button-box .input-button,
#part-setting-invite .button-box .input-button
{
Expand Down Expand Up @@ -424,9 +415,21 @@ dl dd
margin-top : 20px;
}


#part-setting-invite #letter-section dt
{
display:none;
}

#letter
{
width : 550px;
background-color : #efefef;
width : 670px;
margin : 20px auto;
padding : 40px;
box-shadow : 0 -2px 3px rgba(0, 0, 0, 0.3);
-webkit-box-shadow : 0 -2px 3px rgba(0, 0, 0, 0.3);
-moz-box-shadow : 0 -2px 3px rgba(0, 0, 0, 0.3);
}

#letter-head label,
Expand All @@ -447,10 +450,11 @@ dl dd
}

#invitation_receiver,
#invitation_comment,
#invitation_sender
{
font-size : inherit;
width : 550px;
width : 100%;
}

#invitation_identify
Expand All @@ -467,7 +471,7 @@ dl dd

#letter-body textarea
{
width : 546px;
width : 100%;
}

#letter-section .button-box
Expand Down
14 changes: 8 additions & 6 deletions skin/admin/canon/skin.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,13 @@
#part-skin-list .section .information .button-box a,
#part-skin-current .section .information .button-box a
{
background-color : #FFFFFF;
background-image : url("./image/bg_button.png");
background-position : left top;
background-repeat : repeat-x;
border : 1px solid #777777;
background-color : #fbfbfb;
background-position : left bottom;
background-repeat : repeat-x;
background-image : -moz-linear-gradient(top, #fff, #eee);
background-image : -webkit-linear-gradient(top, #fff, #eee);
background-image : linear-gradient(top, #fff, #eee);
border : 1px solid #777777;
font-size : 1em;
line-height : 1.5em;
padding : 3px 5px 1px 5px;
Expand Down Expand Up @@ -290,7 +292,7 @@
border : none;
margin : 0;
position : relative;
left : 200px;
left : 400px;
text-align : left;
top : -38px;
width : 40em;
Expand Down

0 comments on commit 2c3c881

Please sign in to comment.