Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
  • entries
    3
  • comments
    2
  • views
    33,521

Исправляем панель смайлов. (IP.Board 3.2.x-3.3.x)

Sign in to follow this  
Атаман

386 views

Наверное, многие невзлюбили панель смайлов при переходе с 3.1.х до 3.2.х-3.3.х

 

До:

c5cc5641cee4.jpg

После:

831b963565a4.jpg

 

Начнём

 

АЦ > Внешний вид > Управление стилями и шаблонами > Управление шаблонами в IP.Board > CSS > ipb_ckeditor.css

 

Ищем:

 

/* Emo slide out tray */
.ipsSmileyTray
{
position: relative;

text-align: center;
overflow: auto;
margin: 0px auto 0px auto;
padding: 4px 24px 4px 24px;
min-width: 600px;
width: 75%;
height: 32px;
border: 1px solid #D5DDE5;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;

 

Заменяем:

 

/* Emo slide out tray */
.ipsSmileyTray
{
position: relative;

text-align: center;
overflow: auto;
margin: 0px auto 0px auto;
padding: 4px 24px 4px 24px;
min-width: 600px;
width: 85%;
height: auto;
border: 1px solid #D5DDE5;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;

 

Ищем:

 

.ipsSmileyTray img.bbc_emoticon {
	opacity: 0.8;
	cursor: pointer;
	margin: 6px 3px 0px 3px;
	max-width: 30px;
	max-height: 30px;
 }

 

Заменяем:

 

 

.ipsSmileyTray img.bbc_emoticon {
	opacity: 0.8;
	cursor: pointer;
	margin: 6px 3px 0px 3px;
	max-width: auto;
	max-height: auto;
 }

  • Upvote 3
Sign in to follow this  


0 Comments


Recommended Comments

There are no comments to display.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...